exponent
/ĭk-spō′nənt, ĕk′spō″nənt/
noun
  1. One that expounds or interprets.
  2. One that speaks for, represents, or advocates.
    Our senator is an exponent of free trade.
  3. (Mathematics) A number or symbol, as 3 in (x + y)3, placed to the right of and above another number, symbol, or expression, denoting the power to which that number, symbol, or expression is to be raised.
from The American Heritage® Dictionary of the English Language, 5th Edition. More at Wordnik

Since the Oxford English Dictionary is behind a paywall, I can't blame you for not surfacing this:

exponentiate, v.

Mathematics.

1. intransitive. To increase exponentially; also, more generally, to exhibit specified asymptotic behaviour as some limit is approached.

2. transitive. To raise e or some other base (BASE n.1 20) to the power of; to subject to exponentiation. Also absol.

Source: Oxford English Dictionary (login required)

Here are a couple of usage examples supplied . . .

Intransitive:

1971   Physical Rev. D. 3 970   We find that the leading Regge-pole term arising from single-ladder-exchange exponentiates.

Transitive:

1978   Physics Lett. A. 64 477/2   By solving the operator equations in their full nonlinear form..we are able to exponentiate the logarithmic terms into power law singularities.

Go forth and exponentiate.

Answer from Tinfoil Hat on Stack Exchange
🌐
WordHippo
wordhippo.com › what-is › the-verb-for › exponent.html
What is the verb for exponent?
Verbs for exponent include expone, exponentialize, exponentialized, exponentiate, exponentiated, exponentiates, exponentiating, exponing, expose, exposed, exposes, exposest, exposeth, exposing, expound, expounded, expoundest, expoundeth, expounding and expounds. Find more words at wordhippo.com!
🌐
Merriam-Webster
merriam-webster.com › dictionary › exponent
EXPONENT Definition & Meaning - Merriam-Webster
The meaning of EXPONENT is a symbol written above and to the right of a mathematical expression to indicate the operation of raising to a power. How to use exponent in a sentence. Did you know?
🌐
Oxford Learner's Dictionaries
oxfordlearnersdictionaries.com › definition › english › exponent
exponent noun - Definition, pictures, pronunciation and usage notes | Oxford Advanced Learner's Dictionary at OxfordLearnersDictionaries.com
(as an adjective in the sense ‘expounding’): from Latin exponent- ‘putting out’, from the verb exponere ‘expose, publish, explain’, from ex- ‘out’ + ponere ‘put’.See exponent in the Oxford Advanced American DictionarySee exponent in the Oxford Learner's Dictionary of Academic ...
🌐
Dictionary.com
dictionary.com › browse › exponent
EXPONENT Definition & Meaning | Dictionary.com
A number or symbol, placed above and to the right of the expression to which it applies, that indicates the number of times the expression is used as a factor. For example, the exponent 3 in 5 3 indicates 5 × 5 × 5; the exponent x in (a + b) x indicates (a + b) multiplied by itself x times.
Find elsewhere
🌐
Vocabulary.com
vocabulary.com › dictionary › exponent
Exponent - Definition, Meaning & Synonyms | Vocabulary.com
You may already know the mathematical ... strong advocate or promoter of something? Well, its Latin ancestor was a verb meaning "to put forth" and it's easy to see how ......
🌐
Collins Dictionary
collinsdictionary.com › us › dictionary › english › exponent
EXPONENT definition in American English | Collins English Dictionary
An exponent of an idea, theory, or plan is a person who supports and explains it, and who tries to persuade other people that it is a good idea.
🌐
Wikipedia
en.wikipedia.org › wiki › Exponent_(linguistics)
Exponent (linguistics) - Wikipedia
January 9, 2026 - An exponent is a phonological manifestation of a morphosyntactic property. In non-technical language, it is the expression of one or more grammatical properties by sound. There are several kinds of exponents: ... The identity exponent is both simple and common: it has no phonological manifestation ...
🌐
Oxford English Dictionary
oed.com › dictionary › expone_v
expone, v. meanings, etymology and more | Oxford English Dictionary
Etymons: Latin expōnĕre. ... The earliest known use of the verb expone is in the Middle English period (1150—1500).
🌐
WordHippo
wordhippo.com › what-is › the-verb-for › exponential.html
What is the verb for exponential?
Verbs for exponential include expone, exponentialize, exponentialized, exponentiate, exponentiated, exponentiates, exponentiating, exponing, expose, exposed, exposes, exposest, exposeth, exposing, expound, expounded, expoundest, expoundeth, expounding and expounds. Find more words at wordhippo.com!
Top answer
1 of 3
2

Two alternatives with automatically resized N:

\documentclass{article}
\usepackage{amstext}% or package amsmath for \text
\newcommand*{\ttmath}[1]{%
  \texttt{\mdseries\upshape#1}%
}

\begin{document}

  $2^{\verb|N|-1}$ {\small(\verb|\verb|)}

  $2^{\texttt{N}-1}$ {\small(\verb|\texttt| with \verb|amstext|)}

  \textit{Italics $2^{\ttmath{N}-1}$ context} {\small(macro \verb|\ttmath|)}

  $2^{\mathtt{N}-1}$ {\small(\verb|\mathtt|)}

\end{document}

Remarks:

  • \texttt here works with automatically resizing in math mode because it internally uses \nfss@text that is redefined in package amstext as \text.

  • Macro \ttmath also resets font attributes series and shape to get independent from the current text font setting.

  • \mathtt is the most efficient command and uses the configured typewriter font for math. This is often the same as \ttfamily. Some font packages switch both fonts at the same time as lmodern, others do not as beramono. Therefore, it depends on the font setup, whether \mathtt can be used instead of \verb or \texttt.

2 of 3
1

The LaTeX kernel defines \mathtt and nothing else is necessary. By the way, \verb should not be abused for printing in the typewriter font, usually \texttt is enough, whereas \verb is needed for printing TeX code with special characters.

\documentclass{article}

\begin{document}

$2^{\mathtt{N}-1}$

$2^{\mathtt{N}^{\mathtt{M}}}$

\end{document}

It's probably useful to define your own semantic command, say

\newcommand{\tvar}[1]{\mathtt{#1}}

and use $2^{\tvar{N}}$. This way you're not tied to the particular representation that you can change at any time by just modifying the definition.

It may happen that the choice of a different font set doesn't update \mathtt. The solution is simple and the advantage over other solutions involving \text is that this can be easily adapted to support \boldmath out of the box.

\documentclass{article}
\usepackage[T1]{fontenc} % necessary for beramono
\usepackage{amsmath}

\usepackage{beramono}

% update \mathtt to use the same font as \ttfamily
\DeclareMathAlphabet{\mathtt}{\encodingdefault}{\ttdefault}{m}{n}
% if the monospaced font also supports boldface (b or bx)
\SetMathAlphabet{\mathtt}{\encodingdefault}{\ttdefault}{b}{n}

\newtheorem{theorem}{Theorem}

\begin{document}

$2^{\mathtt{N}-1}$ and \texttt{N}

\begin{theorem}
Something about $2^{\mathtt{N}-1}$
\end{theorem}

\end{document}


Side note

Using \texttt is wrong, as exemplified by the following code.

\documentclass{article}
\usepackage{amsmath}

\newcommand{\tvar}[1]{\mathtt{#1}}

\newtheorem{theorem}{Theorem}

\begin{document}

\section*{Right}

$2^{\tvar{N}-1}$

\begin{theorem}
Something about $2^{\tvar{N}-1}$
\end{theorem}

\section*{Wrong}

$2^{\texttt{N}-1}$

\begin{theorem}
Something about $2^{\texttt{N}-1}$
\end{theorem}

\end{document}

🌐
Reddit
reddit.com › r/learnmath › what is the verb for...idk, doing "e" to both sides of an equation?
r/learnmath on Reddit: What is the verb for...idk, doing "e" to both sides of an equation?
April 19, 2019 -

Ex)

y=ln|x| --> x=ey

What the heck did I just do? "e" both sides? "Eulerize" both sides? Is there even a word for it?

Edit: "Exponentiate" seems to be the popular answer! However, a quick Google search of the term to double check describes it as (and correct me if I'm wrong) raising a base to an exponent. But in whatever I did above, I didn't raise both sides to a power; I raised "e" to the power of each side right? So idk... "exponentiate e by each side" might be what I say until someone says otherwise.

Edit 2: I might try to start "Eulerentiation" lol

🌐
The BMJ
blogs.bmj.com › home › latest articles › jeffrey aronson: when i use a word . . . logarithmic exponents
Jeffrey Aronson: When I Use a Word . . . Logarithmic exponents - The BMJ
April 24, 2020 - That didn’t happen until the early 19th century, but in the meantime mathematicians had adopted it to mean a symbol denoting the number of times a particular quantity is to be multiplied. For example in the number 23, the three is the exponent and it shows how many times you have to multiply 2 by itself to get the number so denoted: 23 = 2 × 2 × 2 = 8.
🌐
WordHippo
wordhippo.com › what-is › another-word-for › exponent.html
What is another word for exponent? | Exponent Synonyms - WordHippo Thesaurus
Synonyms for exponent include supporter, advocate, champion, promoter, backer, proponent, apostle, protagonist, expounder and friend. Find more similar words at wordhippo.com!
🌐
Cambridge Dictionary
dictionary.cambridge.org › dictionary › learner-english › exponent
EXPONENT | meaning - Cambridge Learner's Dictionary
EXPONENT definition: someone who supports a particular idea or belief, or performs a particular activity: . Learn more.