A016662 Decimal expansion of log(39).
3, 6, 6, 3, 5, 6, 1, 6, 4, 6, 1, 2, 9, 6, 4, 6, 4, 2, 7, 4, 4, 8, 7, 3, 2, 6, 7, 8, 4, 8, 7, 8, 4, 4, 3, 0, 9, 4, 5, 2, 7, 5, 8, 5, 0, 2, 5, 8, 2, 9, 5, 6, 5, 6, 8, 1, 5, 3, 7, 3, 9, 8, 4, 4, 3, 0, 0, 9, 5, 8, 9, 6, 0, 5, 4, 3, 0, 1, 9, 1, 4, 6, 2, 7, 3, 1, 9, 0, 4, 1, 8, 2, 5, 4, 2, 2, 1, 5, 7
Offset: 1
Examples
3.663561646129646427448732678487844309452758502582956568153739844300958....
References
- M. Abramowitz and I. 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
- M. Abramowitz and I. A. Stegun, eds., Handbook of Mathematical Functions, National Bureau of Standards, Applied Math. Series 55, Tenth Printing, 1972 [alternative scanned copy].
- Index entries for transcendental numbers
Programs
-
Maple
Digits:=100: evalf(log(39)); # Wesley Ivan Hurt, Jan 27 2017
-
Mathematica
RealDigits[Log[39], 10, 120][[1]] (* Vincenzo Librandi, Jun 21 2015 *)
-
PARI
default(realprecision, 20080); x=log(39); for (n=1, 20000, d=floor(x); x=(x-d)*10; write("b016662.txt", n, " ", d)); \\ Harry J. Smith, May 21 2009