A016674 Decimal expansion of log(51).
3, 9, 3, 1, 8, 2, 5, 6, 3, 2, 7, 2, 4, 3, 2, 5, 7, 7, 1, 6, 4, 4, 7, 7, 9, 8, 5, 4, 7, 9, 5, 6, 5, 2, 2, 4, 0, 2, 3, 5, 6, 9, 3, 5, 7, 0, 4, 0, 8, 4, 9, 4, 2, 3, 9, 0, 3, 1, 9, 3, 2, 0, 7, 1, 5, 1, 9, 7, 8, 6, 8, 6, 9, 0, 1, 9, 5, 4, 0, 2, 4, 7, 7, 8, 5, 7, 1, 0, 6, 2, 2, 8, 5, 1, 2, 3, 5, 0, 3
Offset: 1
Examples
3.931825632724325771644779854795652240235693570408494239031932071519786....
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
Crossrefs
Cf. A016479 (continued fraction).
Programs
-
Mathematica
RealDigits[Log[51],10,120][[1]] (* Harvey P. Dale, Sep 30 2012 *)
-
PARI
default(realprecision, 20080); x=log(51); for (n=1, 20000, d=floor(x); x=(x-d)*10; write("b016674.txt", n, " ", d)); \\ Harry J. Smith, May 21 2009