A016711 Decimal expansion of log(88).
4, 4, 7, 7, 3, 3, 6, 8, 1, 4, 4, 7, 8, 2, 0, 6, 4, 7, 2, 3, 1, 3, 6, 3, 9, 9, 4, 2, 3, 3, 9, 6, 5, 9, 0, 0, 4, 0, 4, 8, 2, 0, 7, 2, 5, 7, 0, 1, 8, 1, 8, 2, 9, 3, 7, 5, 8, 0, 6, 0, 7, 7, 3, 7, 6, 1, 0, 7, 5, 4, 4, 8, 9, 8, 2, 2, 3, 2, 0, 8, 5, 9, 8, 9, 2, 6, 4, 4, 6, 8, 8, 9, 9, 1, 8, 9, 0, 8, 5
Offset: 1
Examples
4.477336814478206472313639942339659004048207257018182937580607737610754....
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. A016516 (continued fraction).
Programs
-
Magma
SetDefaultRealField(RealField(100)); Log(88); // G. C. Greubel, Sep 17 2018
-
Mathematica
RealDigits[Log[88], 10, 100][[1]] (* G. C. Greubel, Sep 17 2018 *)
-
PARI
default(realprecision, 20080); x=log(88); for (n=1, 20000, d=floor(x); x=(x-d)*10; write("b016711.txt", n, " ", d)); \\ Harry J. Smith, May 24 2009