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.

A093589 Decimal expansion of e^(2*e).

Original entry on oeis.org

2, 2, 9, 6, 5, 1, 6, 6, 4, 0, 8, 3, 5, 2, 4, 1, 3, 2, 5, 0, 9, 9, 2, 9, 5, 8, 8, 7, 9, 6, 4, 4, 4, 3, 4, 1, 2, 3, 1, 5, 9, 9, 5, 8, 5, 9, 3, 1, 8, 5, 0, 7, 6, 2, 5, 1, 4, 4, 5, 4, 1, 4, 3, 3, 6, 3, 6, 9, 8, 9, 7, 8, 1, 1, 6, 1, 7, 3, 6, 1, 8, 6, 4, 3, 9, 7, 4, 5, 2, 6, 6, 9, 1, 4, 6, 4, 9, 6, 3, 5, 1, 1, 8, 6, 4
Offset: 3

Views

Author

Mohammad K. Azarian, May 14 2004

Keywords

Examples

			229.651664083524132509929588
		

Crossrefs

Programs

  • Mathematica
    RealDigits[E^(2E),10,120][[1]] (* Harvey P. Dale, Sep 28 2011 *)
  • PARI
    { default(realprecision, 20080); x=exp(1)^(2*exp(1))/100; for (n=3, 20000, d=floor(x); x=(x-d)*10; write("b093589.txt", n, " ", d)); } \\ Harry J. Smith, Jun 19 2009