A016454 Continued fraction for log(26).
3, 3, 1, 6, 1, 31, 1, 1, 1, 2, 1461, 1, 1, 2, 1, 3, 1, 4, 2, 5, 1, 1, 104, 6, 25, 10, 6, 12, 1, 2, 1, 156, 2, 1, 1, 7, 1, 139, 1, 8, 1, 3, 2, 1, 8, 7, 1, 8, 2, 3, 2, 9, 6, 46, 1, 3, 5, 1, 5, 1, 10, 1, 2, 7, 7, 2, 22, 2, 4, 3, 1, 177, 2
Offset: 1
Examples
3.258096538021482045470719563... = 3 + 1/(3 + 1/(1 + 1/(6 + 1/(1 + ...)))). - _Harry J. Smith_, May 20 2009
Links
- Harry J. Smith, Table of n, a(n) for n = 1..20000
Crossrefs
Cf. A016649 Decimal expansion. - Harry J. Smith, May 20 2009
Programs
-
Mathematica
ContinuedFraction[Log[26],100] (* Harvey P. Dale, Jul 23 2018 *)
-
PARI
{ allocatemem(932245000); default(realprecision, 21000); x=contfrac(log(26)); for (n=1, 20000, write("b016454.txt", n, " ", x[n])); } \\ Harry J. Smith, May 20 2009