A016443 Continued fraction for log(15).
2, 1, 2, 2, 2, 1, 5, 2, 2, 1, 3, 3, 2, 58, 8, 1, 2, 1, 1, 4, 1, 1, 165, 1, 1, 7, 3, 1, 4, 7, 3, 2, 8, 2, 1, 1, 4, 23, 2, 8, 2, 2, 3, 2, 1, 13, 1, 2, 1, 3, 58, 3, 1, 3, 2, 3, 4, 2, 1, 110, 4, 3, 25, 1, 5, 1, 4, 24, 3, 2, 7, 1, 1, 2, 1, 1, 5
Offset: 1
Examples
2.708050201102210065996004570... = 2 + 1/(1 + 1/(2 + 1/(2 + 1/(2 + ...)))). - _Harry J. Smith_, May 16 2009
Links
- Harry J. Smith, Table of n, a(n) for n = 1..20000
Crossrefs
Cf. A016638 Decimal expansion. - Harry J. Smith, May 16 2009
Programs
-
Mathematica
ContinuedFraction[Log[15],100] (* Harvey P. Dale, May 15 2019 *)
-
PARI
{ allocatemem(932245000); default(realprecision, 21000); x=contfrac(log(15)); for (n=1, 20000, write("b016443.txt", n, " ", x[n])); } \\ Harry J. Smith, May 16 2009