A225053 Second terms of continued fractions for power towers e, e^e, e^e^e, ...
1, 6, 9, 4
Offset: 1
Examples
a(3) = 9 because floor(1/frac(e^e^e)) = 9, since e^e^e ~ 3814279.10476.
Links
- Eric Weisstein's World of Mathematics, e.
- Eric Weisstein's World of Mathematics, Power Tower
- Wikipedia, Tetration, Open questions
Crossrefs
Programs
-
Mathematica
$MaxExtraPrecision = Infinity; terms = 4; Map[Function[x, ContinuedFraction[x, 2][[2]]], NestList[Exp, E, terms - 1]]
Comments