A161683 Continued fraction for (Pi + e)^Pi.
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
Examples
258.45937196674728871610710... = 258 + 1/(2 + 1/(5 + 1/(1 + 1/(1 + ...)))).
Links
- Harry J. Smith, Table of n, a(n) for n = 0..20000
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])); }