A094001 Decimal expansion of (Pi + e)^Pi.
2, 5, 8, 4, 5, 9, 3, 7, 1, 9, 6, 6, 7, 4, 7, 2, 8, 8, 7, 1, 6, 1, 0, 7, 1, 0, 2, 1, 6, 8, 4, 2, 6, 9, 2, 4, 3, 6, 0, 6, 2, 2, 6, 1, 7, 4, 5, 1, 4, 4, 9, 8, 3, 5, 2, 3, 9, 3, 5, 6, 3, 4, 5, 7, 4, 0, 3, 4, 6, 4, 6, 8, 7, 7, 2, 0, 7, 7, 9, 3, 8, 6, 6, 3, 2, 4, 2, 1, 9, 6, 8, 3, 7, 9, 2, 9, 6, 4, 9, 7, 8, 9, 8, 2, 0
Offset: 3
Examples
258.4593719667472887161071021684269...
Links
- Harry J. Smith, Table of n, a(n) for n = 3..20000
Crossrefs
Cf. A161683 (continued fraction). - Harry J. Smith, Jun 16 2009
Programs
-
Mathematica
RealDigits[(Pi + E)^Pi, 10, 125][[1]] (* G. C. Greubel, Dec 27 2021 *)
-
PARI
{ default(realprecision, 20080); x=(Pi+exp(1))^Pi/100; for (n=3, 20000, d=floor(x); x=(x-d)*10; write("b094001.txt", n, " ", d)); } \\ Harry J. Smith, Jun 16 2009
-
Sage
numerical_approx((pi+e)^pi, digits=125) # G. C. Greubel, Dec 27 2021