A016492 Continued fraction for log(64).
4, 6, 3, 2, 2, 18, 1, 1, 1, 64, 1, 3, 1, 10, 1, 2, 1, 7, 2, 5, 3, 1, 2, 2, 3, 2, 1, 2, 1, 4, 1, 3, 3, 2, 1, 1, 1, 4, 1, 1, 7, 2, 1, 27, 2, 1, 1, 4, 4, 1, 1, 1, 4, 1, 1, 6, 20, 1, 8, 2, 2, 1, 5, 1, 11, 1, 10, 1, 5, 1, 1, 2, 5, 9, 1, 5, 1, 2, 2
Offset: 1
Examples
4.158883083359671856503392728... = 4 + 1/(6 + 1/(3 + 1/(2 + 1/(2 + ...)))). - _Harry J. Smith_, May 22 2009
Links
- Harry J. Smith, Table of n, a(n) for n = 1..20000
Crossrefs
Cf. A016687 (decimal expansion).
Programs
-
Mathematica
ContinuedFraction[Log[64], 100] (* Paolo Xausa, Mar 27 2024 *)
-
PARI
{ allocatemem(932245000); default(realprecision, 21000); x=contfrac(log(64)); for (n=1, 20000, write("b016492.txt", n, " ", x[n])); } \\ Harry J. Smith, May 22 2009