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.

A271574 Decimal expansion of Sum_{n>=0} 1/(n!)^3.

Original entry on oeis.org

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

Views

Author

Vaclav Kotesovec, Apr 10 2016

Keywords

Examples

			2.1297025489833064181345236105954134683192207470391693...
		

Crossrefs

Programs

  • Maple
    evalf(Sum(1/n!^3, n=0..infinity), 120); # Vaclav Kotesovec, Apr 10 2016
  • Mathematica
    RealDigits[HypergeometricPFQ[{}, {1, 1}, 1], 10, 120][[1]]
    RealDigits[Total[1/(Range[0,200]!)^3],10,120][[1]] (* Harvey P. Dale, Mar 06 2024 *)
  • PARI
    default(realprecision, 120); sumpos(n=0, 1/n!^3)