A016444 Continued fraction for log(16).
2, 1, 3, 2, 1, 1, 14, 3, 9, 43, 1, 1, 7, 1, 1, 3, 1, 3, 2, 1, 2, 1, 3, 1, 1, 1, 4, 6, 1, 1, 6, 3, 1, 1, 21, 3, 1, 2, 1, 2, 4, 1, 8, 4, 1, 1, 3, 3, 28, 1, 6, 1, 4, 5, 3, 3, 5, 1, 19, 7, 1, 1, 70, 11, 8, 6, 1, 1, 3, 4, 1, 2, 7, 1, 5, 3, 2, 34
Offset: 1
Examples
2.772588722239781237668928485... = 2 + 1/(1 + 1/(3 + 1/(2 + 1/(1 + ...)))). - _Harry J. Smith_, May 17 2009
Links
- Harry J. Smith, Table of n, a(n) for n = 1..20000
Crossrefs
Cf. A016639 Decimal expansion. - Harry J. Smith, May 17 2009
Programs
-
Mathematica
ContinuedFraction[Log[16],80] (* Harvey P. Dale, May 13 2012 *)
-
PARI
{ allocatemem(932245000); default(realprecision, 21000); x=contfrac(log(16)); for (n=1, 20000, write("b016444.txt", n, " ", x[n])); } \\ Harry J. Smith, May 17 2009