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.

A093626 Decimal expansion of e^(-4*e).

Original entry on oeis.org

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

Views

Author

Mohammad K. Azarian, May 14 2004

Keywords

Examples

			0.000018960981154216904682363860800
		

Crossrefs

Programs

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