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.

A080219 Decimal expansion of exponential factorial constant Sum_{n>=1} 1/A049384(n).

Original entry on oeis.org

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

Views

Author

Eric W. Weisstein, Feb 06 2003

Keywords

Comments

This is a Liouville number and therefore transcendental.

Examples

			1/1 + 1/2 + 1/9 + 1/262144 + ... = 1.611114925808376736111...
		

References

  • Contributed by Jonathan Sondow.

Crossrefs

Programs

  • Mathematica
    eFac[1] = 1; eFac[n_] := eFac[n] = n^eFac[n-1]; Clear[s]; s[m_] := s[m] = RealDigits[Sum[1/eFac[n], {n, 1, m}], 10, 100] // First; s[m = 1]; While[s[m] != s[m - 1], m++]; s[m] (* Jean-François Alcover, Feb 08 2013 *)