A016442 Continued fraction for log(14).
2, 1, 1, 1, 3, 2, 1, 3, 1, 7, 1, 4, 8, 4, 10, 1, 2, 1, 9, 1, 5, 4, 2, 4, 5, 2, 3, 123, 10, 12, 4, 1, 1, 1, 1, 1, 2, 2, 9, 4, 1, 4, 11, 2, 1, 8, 2, 2, 3, 3, 11, 16, 2, 2, 3, 7, 1, 1, 1, 95, 5, 34, 1, 2, 4, 1, 2, 3, 1, 1, 1, 37, 6, 38, 1, 26
Offset: 1
Examples
2.639057329615258614522584864... = 2 + 1/(1 + 1/(1 + 1/(1 + 1/(3 + ...)))). - _Harry J. Smith_, May 16 2009
Links
- Harry J. Smith, Table of n, a(n) for n = 1..20000
Crossrefs
Cf. A016637 (decimal expansion). - Harry J. Smith, May 16 2009
Programs
-
Mathematica
ContinuedFraction[Log[14],80] (* Harvey P. Dale, Jan 22 2012 *)
-
PARI
{ allocatemem(932245000); default(realprecision, 21000); x=contfrac(log(14)); for (n=1, 20000, write("b016442.txt", n, " ", x[n])); } \\ Harry J. Smith, May 16 2009