A016441 Continued fraction for log(13).
2, 1, 1, 3, 2, 1, 6, 2, 1, 4, 47, 1, 1, 1, 1, 1, 11, 4, 2, 18, 1, 2, 2, 3, 1, 1, 2, 2, 3, 2, 40, 7, 1, 4, 1, 28, 6, 1, 2, 7, 1, 1, 1, 8, 1, 3, 1, 21, 1, 4, 1, 2, 4, 44, 3, 4, 4, 1, 3, 1, 23, 2, 2, 5, 1, 1, 33, 1, 1, 13, 1, 60, 115, 1, 2, 1
Offset: 1
Examples
2.564949357461536736053487441... = 2 + 1/(1 + 1/(1 + 1/(3 + 1/(2 + ...)))). - _Harry J. Smith_, May 16 2009
Links
- Harry J. Smith, Table of n, a(n) for n = 1..20000
Crossrefs
Cf. A016636 (decimal expansion). - Harry J. Smith, May 16 2009
Programs
-
Mathematica
ContinuedFraction[Log[13], 100] (* Paolo Xausa, Mar 22 2024 *)
-
PARI
{ allocatemem(932245000); default(realprecision, 21000); x=contfrac(log(13)); for (n=1, 20000, write("b016441.txt", n, " ", x[n])); } \\ Harry J. Smith, May 16 2009