cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A094001 Decimal expansion of (Pi + e)^Pi.

Original entry on oeis.org

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

Views

Author

Mohammad K. Azarian, May 30 2004

Keywords

Examples

			258.4593719667472887161071021684269...
		

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