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.

A336686 Decimal expansion of Sum_{k>=0} 1/(k!)!.

Original entry on oeis.org

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

Views

Author

Daniel Hoyt, Nov 20 2020

Keywords

Comments

The sum has 18 8's in a row within the first 23 decimal places.
1801/720 approximates this constant to 23 significant digits.

Examples

			2.5013888888888888888888905006...
		

Crossrefs

Programs

  • Maple
    evalf(sum(1/(k!)!, k=0..infinity), 112);  # Alois P. Heinz, Nov 20 2020
  • Mathematica
    RealDigits[Sum[1/(k!)!, {k, 0, 4}], 10, 100][[1]] (* Amiram Eldar, Nov 21 2020 *)
  • PARI
    suminf(k=0, 1/(k!)!)