A182527 Decimal expansion of | log_gamma(phi) |, where gamma is the Euler-Mascheroni constant and phi is the golden ratio.
8, 7, 5, 6, 6, 4, 0, 5, 8, 4, 0, 6, 8, 2, 1, 2, 3, 6, 5, 7, 7, 0, 0, 9, 4, 3, 9, 1, 7, 2, 0, 7, 8, 9, 0, 0, 2, 7, 7, 3, 7, 4, 4, 8, 6, 2, 7, 5, 3, 3, 4, 7, 1, 9, 4, 8, 3, 8, 6, 4, 6, 3, 4, 1, 5, 1, 3, 8, 1, 7, 2, 9, 7, 0, 5, 1, 6, 2, 1, 7, 2, 9, 7, 4, 4, 8, 8, 5, 0, 2, 0, 1, 6, 7, 7, 8, 8, 7, 8, 9, 5, 9, 9, 8, 1
Offset: 0
Examples
0.87566405840682123657700943917207890027737448627533...
Links
- G. C. Greubel, Table of n, a(n) for n = 0..10000
Programs
-
Magma
SetDefaultRealField(RealField(100)); R:= RealField(); phi:=(1+Sqrt(5))/2; -Log(phi)/Log(EulerGamma(R)); // G. C. Greubel, Sep 01 2018
-
Mathematica
RealDigits[ N[Log[GoldenRatio]/Log[EulerGamma], 105]] [[1]]
-
PARI
default(realprecision, 100); phi=(1+sqrt(5))/2; -log(phi)/log(Euler) \\ G. C. Greubel, Sep 01 2018