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.

A161683 Continued fraction for (Pi + e)^Pi.

Original entry on oeis.org

258, 2, 5, 1, 1, 1, 7, 1, 2, 2, 1, 60, 1, 1, 2, 2, 24, 10, 1, 2, 1, 3, 2, 3, 9, 1, 2, 1, 12, 1, 5, 2, 4, 3, 1, 8, 2, 1, 4, 1, 3, 2, 2, 5, 55, 1, 2, 1, 4, 4, 1, 2, 1, 9, 1, 2, 1, 1, 1, 9, 3, 6, 1, 2, 3, 1, 1, 2, 2, 7, 1, 2, 7, 2, 1, 7, 1, 6, 8, 1, 2, 3, 16, 3, 63, 7, 2, 2, 2, 1, 1, 2, 4, 1, 2, 2, 50, 1, 1, 3, 1
Offset: 0

Views

Author

Harry J. Smith, Jun 16 2009

Keywords

Examples

			258.45937196674728871610710... = 258 + 1/(2 + 1/(5 + 1/(1 + 1/(1 + ...)))).
		

Crossrefs

Cf. A094001 (decimal expansion).

Programs

  • Mathematica
    ContinuedFraction[(Pi + E)^Pi,101] (* Stefano Spezia, Aug 19 2025 *)
  • PARI
    { allocatemem(932245000); default(realprecision, 21000); x=contfrac((Pi+exp(1))^Pi); for (n=0, 20000, write("b161683.txt", n, " ", x[n+1])); }