A016453 Continued fraction for log(25).
3, 4, 1, 1, 3, 7, 2, 12, 47, 2, 1, 1, 1, 1, 1, 1, 19, 1, 11, 1, 5, 15, 3, 1, 1, 3, 1, 1, 19, 8, 1, 1, 1, 1, 1, 20, 6, 1, 3, 2, 3, 4, 9, 3, 26, 8, 9, 8, 32, 1, 1, 1, 1, 5, 1, 8, 2, 4, 2, 10, 2, 7, 1, 1, 7, 20, 1, 27, 70, 1, 15, 1, 1, 12
Offset: 1
Examples
3.218875824868200749201518666... = 3 + 1/(4 + 1/(1 + 1/(1 + 1/(3 + ...)))). - _Harry J. Smith_, May 19 2009
Links
- Harry J. Smith, Table of n, a(n) for n = 1..20000
Crossrefs
Cf. A016648 Decimal expansion. - Harry J. Smith, May 19 2009
Programs
-
Mathematica
ContinuedFraction[Log[25],120] (* Harvey P. Dale, Sep 20 2011 *)
-
PARI
{ allocatemem(932245000); default(realprecision, 21000); x=contfrac(log(25)); for (n=1, 20000, write("b016453.txt", n, " ", x[n])); } \\ Harry J. Smith, May 19 2009