A336686 Decimal expansion of Sum_{k>=0} 1/(k!)!.
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
Examples
2.5013888888888888888888905006...
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!)!)
Comments