OFFSET
1,1
REFERENCES
Milton Abramowitz and Irene A. Stegun, eds., Handbook of Mathematical Functions, National Bureau of Standards Applied Math. Series 55, 1964 (and various reprintings), p. 2.
LINKS
Harry J. Smith, Table of n, a(n) for n = 1..20000
Milton Abramowitz and Irene A. Stegun, eds., Handbook of Mathematical Functions, National Bureau of Standards, Applied Math. Series 55, Tenth Printing, 1972 [alternative scanned copy].
FORMULA
log(11) = 2*Sum_{n >= 1} 1/(n*P(n, 6/5)*P(n-1, 6/5)), where P(n, x) denotes the n-th Legendre polynomial. The first 20 terms of the series gives the approximation log(11) = 2.3978952727(47...), correct to 10 decimal places. - Peter Bala, Mar 19 2024
Equals 2*(log 2+log 5 -log 3)+Sum_{k>=1} (-1)^k/(k*100^k). - R. J. Mathar, Jun 10 2024
EXAMPLE
2.3978952727983705440619435779651292998217068539374171752185677...
MATHEMATICA
RealDigits[Log[11], 10, 120][[1]] (* Harvey P. Dale, Mar 09 2014 *)
PROG
(PARI) default(realprecision, 20080); x=log(11); for (n=1, 20000, d=floor(x); x=(x-d)*10; write("b016634.txt", n, " ", d)); \\ Harry J. Smith, May 16 2009
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
STATUS
approved