OFFSET
0,3
COMMENTS
Continued fraction for 1/log(2) is the same but without the initial zero.
LINKS
Harry J. Smith, Table of n, a(n) for n = 0..19999
G. Xiao, Contfrac
Eric Weisstein's World of Mathematics, Natural Logarithm of 2
EXAMPLE
log(2) = 0.6931471805599453094... = 0 + 1/(1 + 1/(2 + 1/(3 + 1/(1 + ...)))). - Harry J. Smith, Apr 21 2009
MATHEMATICA
ContinuedFraction[Log[2], 80] (* Alonso del Arte, Oct 03 2017 *)
PROG
(PARI) { allocatemem(932245000); default(realprecision, 21000); x=contfrac(log(2)); for (n=1, 20000, write("b016730.txt", n-1, " ", x[n])); } \\ Harry J. Smith, Apr 21 2009
(Magma) ContinuedFraction(Log(2)); // G. C. Greubel, Sep 15 2018
CROSSREFS
KEYWORD
nonn,cofr
AUTHOR
EXTENSIONS
Offset changed by Andrew Howroyd, Jul 10 2024
STATUS
approved