A016529 Continued fraction for log(3/2).
0, 2, 2, 6, 1, 11, 2, 1, 2, 2, 1, 4, 3, 1, 1, 7, 2, 1, 1, 4, 1, 2, 1, 2, 1, 1, 10, 3, 1, 2, 1, 1, 2, 3, 1, 11, 3, 2, 31, 2, 2, 3, 1, 3, 13, 1, 1, 3, 9, 1, 2, 1, 1, 1, 1, 2, 4, 4, 1, 1, 553, 5, 3, 4, 4, 35, 5, 2, 1, 27, 3, 2, 1, 1, 1, 2, 2, 2
Offset: 1
Examples
0.405465108108164381978013115464349136571990423... 0.405465108108164381978013115... = 0 + 1/(2 + 1/(2 + 1/(6 + 1/(1 + ...)))). - _Harry J. Smith_, May 17 2009
Links
- Harry J. Smith, Table of n, a(n) for n = 1..20000
Crossrefs
Cf. A016578.
Programs
-
Mathematica
ContinuedFraction[Log[3/2],100] (* Harvey P. Dale, Oct 04 2020 *)
-
PARI
{ allocatemem(932245000); default(realprecision, 21000); x=contfrac(log(3/2)); for (n=1, 20000, write("b016529.txt", n, " ", x[n])); } \\ Harry J. Smith, May 17 2009