A016452 Continued fraction for log(24).
3, 5, 1, 1, 1, 1, 1, 1, 6, 35660, 1, 3, 1, 2, 1, 3, 3, 2, 1, 13, 2, 4, 1, 16, 3, 7, 10, 2, 16, 1, 3, 1, 1, 9, 1, 1, 5, 2, 6, 2, 4, 203, 1, 4, 7, 1, 1, 1, 1, 2, 33, 1, 8, 1, 5, 2, 12, 136, 3, 6, 1, 1, 1, 1, 1, 37, 8, 1, 1, 3, 1, 27, 1
Offset: 1
Examples
3.178053830347945619646941601... = 3 + 1/(5 + 1/(1 + 1/(1 + 1/(1 + ...)))). - _Harry J. Smith_, May 19 2009
Links
- Harry J. Smith, Table of n, a(n) for n = 1..20000
Crossrefs
Cf. A016647 Decimal expansion. - Harry J. Smith, May 19 2009
Programs
-
Mathematica
ContinuedFraction[Log[24],120] (* Harvey P. Dale, Jun 04 2011 *)
-
PARI
{ allocatemem(932245000); default(realprecision, 21000); x=contfrac(log(24)); for (n=1, 20000, write("b016452.txt", n, " ", x[n])); } \\ Harry J. Smith, May 19 2009