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.

A160045 Continued fraction for Pi^Pi^Pi A073234.

Original entry on oeis.org

1340164183006357435, 3, 2, 1, 3, 4, 1, 1, 5, 1, 1, 1, 4, 14, 1, 2, 5, 2, 3, 1, 2, 1, 50, 785, 1, 1, 2, 34, 1, 2, 1, 3, 1, 3, 3, 1, 1, 1, 2, 2, 5, 3, 9, 1, 1, 1, 1, 1, 1, 8, 13, 2, 11, 444, 3, 1, 2, 86, 1, 25, 4, 2, 25, 18, 2, 1, 192, 1, 4, 1, 5, 3, 14, 4, 15, 2, 3, 8, 4, 2, 36, 1, 1, 2, 1, 1, 1, 1
Offset: 0

Views

Author

Harry J. Smith, May 01 2009

Keywords

Comments

Pi^Pi^Pi = 1340164183006357435.2974491296401314150993749745734992377879...

Examples

			Pi^Pi^Pi = 1340164183006357435 + 1/(3 + 1/(2 + 1/(1 + 1/(3 + ...)))).
		

Crossrefs

Cf. A073234 Decimal expansion of Pi^Pi^Pi.

Programs

  • Mathematica
    ContinuedFraction[Pi^Pi^Pi,90] (* Harvey P. Dale, Sep 10 2014 *)
  • PARI
    { allocatemem(932245000); default(realprecision, 21000); x=contfrac(Pi^Pi^Pi); for (n=1, 20001, write("b160045.txt", n-1, " ", x[n])); }