A016464 Continued fraction for log(36).
3, 1, 1, 2, 2, 36, 1, 660, 1, 1, 6, 10, 1, 1, 1, 2, 1, 2, 1, 2, 2, 7, 2, 11, 1, 2, 1, 1, 1, 2, 2, 1, 76, 3, 1, 1, 6, 6, 11, 2, 4, 1, 2, 18, 1, 1, 1, 1, 1, 15, 3, 1, 24, 2, 3, 1, 13, 1, 14, 1, 4, 2, 4, 3, 3, 1, 3, 1, 3, 1, 19, 1, 2, 2, 6
Offset: 1
Examples
3.583518938456110001624954716... = 3 + 1/(1 + 1/(1 + 1/(2 + 1/(2 + ...)))). - _Harry J. Smith_, May 21 2009
Links
- Harry J. Smith, Table of n, a(n) for n = 1..20000
Crossrefs
Cf. A016659 Decimal expansion. - Harry J. Smith, May 21 2009
Programs
-
Mathematica
ContinuedFraction[Log[36], 100] (* Paolo Xausa, Mar 22 2024 *)
-
PARI
{ allocatemem(932245000); default(realprecision, 21000); x=contfrac(log(36)); for (n=1, 20000, write("b016464.txt", n, " ", x[n])); } \\ Harry J. Smith, May 21 2009