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.

A159822 Continued fraction for Pi*e A019609.

Original entry on oeis.org

8, 1, 1, 5, 1, 3, 1, 4, 12, 3, 2, 1, 5, 2, 12, 1, 1, 1, 10, 2, 2, 2, 3, 8, 3, 2, 2, 2, 29, 1, 1, 13, 1, 1, 8, 11, 16, 3, 1, 4, 163, 2, 1, 1, 1, 5, 1, 6, 1, 17, 5, 1, 3, 6, 3, 1, 4, 1, 1, 1, 5, 1, 7, 15, 4, 1, 1, 1, 9, 1, 1, 4, 1, 1, 9, 1, 55, 14, 14, 1, 3, 2, 3, 7, 1, 118, 1, 2, 29, 1, 2, 2, 1, 4, 1, 2, 1
Offset: 0

Views

Author

Harry J. Smith, Apr 27 2009

Keywords

Examples

			Pi*e = 8.53973422267356706546... = 8 + 1/(1 + 1/(1 + 1/(5 + 1/(1 + ...))))
		

Programs

  • Mathematica
    ContinuedFraction[E*Pi,5! ] (* Vladimir Joseph Stephan Orlovsky, Jun 18 2009 *)
  • PARI
    { allocatemem(932245000); default(realprecision, 21000); x=contfrac(Pi*exp(1)); for (n=1, 20001, write("b159822.txt", n-1, " ", x[n])); }