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.

A093624 Decimal expansion of e^(-3*e).

Original entry on oeis.org

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

Views

Author

Mohammad K. Azarian, May 14 2004

Keywords

Examples

			0.000287339680766749155
		

Crossrefs

Programs

  • Mathematica
    Join[{0,0,0},RealDigits[E^(-3E),10,120][[1]]] (* Harvey P. Dale, Aug 02 2017 *)
  • PARI
    { default(realprecision, 20080); x=10*exp(1)^(-3*exp(1)); for (n=0, 20000, d=floor(x); x=(x-d)*10; write("b093624.txt", n, " ", d)); } \\ Harry J. Smith, Jun 19 2009