EulerE
Details
- Mathematical function, suitable for both symbolic and numerical manipulation.
- The Euler polynomials satisfy the generating function relation
. - The Euler numbers are given by
. - EulerE automatically threads over lists.
Examples
open all close allBasic Examples (2)
First 10 EulerE numbers:
Table[EulerE[k], {k, 0, 10}]Table[EulerE[n, z], {n, 0, 5}]Scope (4)
EulerE threads elementwise over lists:
EulerE[{2, 4, 6}]Plot[Evaluate[Table[EulerE[k, z], {k, 0, 5}]], {z, 0, 1}]Simple exact values are generated automatically:
EulerE[n, (1/2)]TraditionalForm formatting:
EulerE[n]//TraditionalFormEulerE[n, x]//TraditionalFormApplications (2)
Implement the Boole summation formula:
BooleSummation[f_, {k_, 0, n_}, m_] := (1/2) Underoverscript[∑, j = 0, m - 1](EulerE[j, 0]/j!) ((-1)^n (Subscript[∂, {k, j}]f /. k -> n + 1) + (Subscript[∂, {k, j}]f /. k -> 0))First a sequence of approximations to
:
Table[BooleSummation[k ^ 3, {k, 0, n}, m], {m, 5}]//FullSimplifyThe sequence converges to the exact answer:
% /. n -> 10Plot roots of Euler polynomials in the complex plane:
Graphics[Table[{Hue[n / 30], Point[{Re[#], Im[#]}]& /@ (z /. NSolve[EulerE[n, z] == 0, z])}, {n, 30}]]Properties & Relations (5)
Find Euler numbers from their generating function:
Table[Limit[D[Sech[z], {z, n}], z -> 0], {n, 10}]Table[EulerE[n], {n, 0, 10}]Find Euler polynomials from their generating function:
CoefficientList[Series[Exp[x t] / (Exp[t] + 1), {t, 0, 5}], t]Table[2n!, {n, 0, 5}]//ExpandTable[EulerE[n, x], {n, 0, 5}]EulerE can be represented as a DifferenceRoot:
DifferenceRootReduce[EulerE[1, k], k]FindSequenceFunction can recognize the EulerE sequence:
Table[EulerE[n], {n, 10}]FindSequenceFunction[%, n]The exponential generating function for EulerE:
ExponentialGeneratingFunction[EulerE[n], n, x]Possible Issues (1)
Neat Examples (4)
Umbral calculus with Euler numbers:
Expand[(e - I) ^ 10]% /. e ^ k_. :> Abs[EulerE[k]]Histogram of digits of 10000
Euler number:
Histogram[IntegerDigits[EulerE[10000]]]The sequence of Euler numbers modulo a fixed number is periodic:
DiscretePlot[Mod[EulerE[2n], 17], {n, 50}]Define a Hankel matrix whose entries are the Euler numbers:
eulerHankel[n_] := HankelMatrix[EulerE[Range[0, n - 1]], EulerE[Range[n - 1, 2n - 2]]]eulerHankel[5]//MatrixFormIts determinant can be expressed in terms of the Barnes G-function:
Table[Det[eulerHankel[n]] == (-1)^Binomial[n, 2]BarnesG[n + 1]^2, {n, 10}]See Also
Tech Notes
Related Guides
Related Links
History
Introduced in 1988 (1.0)
Text
Wolfram Research (1988), EulerE, Wolfram Language function, https://reference.wolfram.com/language/ref/EulerE.html.
CMS
Wolfram Language. 1988. "EulerE." Wolfram Language & System Documentation Center. Wolfram Research. https://reference.wolfram.com/language/ref/EulerE.html.
APA
Wolfram Language. (1988). EulerE. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/ref/EulerE.html
BibTeX
@misc{reference.wolfram_2026_eulere, author="Wolfram Research", title="{EulerE}", year="1988", howpublished="\url{https://reference.wolfram.com/language/ref/EulerE.html}", note=[Accessed: 13-June-2026]}
BibLaTeX
@online{reference.wolfram_2026_eulere, organization={Wolfram Research}, title={EulerE}, year={1988}, url={https://reference.wolfram.com/language/ref/EulerE.html}, note=[Accessed: 13-June-2026]}