A016480 Continued fraction for log(52).
3, 1, 19, 1, 1, 24, 15, 1, 3, 1, 12, 1, 7, 2, 5, 1, 6, 1, 3, 6, 1, 31, 1, 7, 39, 3, 2, 1, 1, 3, 8, 2, 1, 1, 1, 1, 8, 1, 6, 4, 2, 7, 1, 4, 1, 8, 7, 1, 1, 2, 39, 1, 7, 2, 1, 2, 6, 5, 2, 2, 20, 2, 1, 13, 2, 1, 1, 10, 4, 2, 2, 1, 2, 7, 5, 4, 1, 1
Offset: 1
Examples
3.95124371858142735488795168... = 3 + 1/(1 + 1/(19 + 1/(1 + 1/(1 + ...)))). - _Harry J. Smith_, May 21 2009
Links
- Harry J. Smith, Table of n, a(n) for n = 1..20000
Crossrefs
Cf. A016675 Decimal expansion. - Harry J. Smith, May 21 2009
Programs
-
Mathematica
ContinuedFraction[Log[52],90] (* Harvey P. Dale, Aug 29 2012 *)
-
PARI
{ allocatemem(932245000); default(realprecision, 21000); x=contfrac(log(52)); for (n=1, 20000, write("b016480.txt", n, " ", x[n])); } \\ Harry J. Smith, May 21 2009