A135001 Decimal expansion of e+gamma+Pi+phi, where gamma is the Euler-Mascheroni constant and phi is the golden ratio.
8, 0, 5, 5, 1, 2, 4, 1, 3, 5, 7, 0, 0, 2, 6, 6, 1, 8, 2, 6, 3, 4, 0, 2, 9, 7, 7, 9, 0, 8, 0, 2, 0, 5, 9, 3, 0, 7, 1, 6, 8, 8, 5, 0, 0, 8, 8, 2, 0, 7, 5, 1, 8, 5, 6, 8, 8, 3, 1, 2, 8, 0, 7, 7, 6, 2, 2, 0, 2, 1, 2, 2, 6, 2, 3, 6, 3, 2, 3, 7, 1, 3, 8, 4, 3, 5, 7, 1, 2, 7, 1, 3, 4, 8, 4, 2, 1, 3, 8, 2
Offset: 1
Examples
............ e = 2.718281828459045235... ........ gamma = 0.577215664901532860... ........... Pi = 3.141592635589793238... .......... phi = 1.618033988749894848... e+gamma+Pi+phi = 8.055124135700266182...
Links
- G. C. Greubel, Table of n, a(n) for n = 1..2000
Programs
-
Magma
SetDefaultRealField(RealField(100)); R:= RealField(); Exp(1) + EulerGamma(R) + Pi(R) + (1+Sqrt(5))/2; // G. C. Greubel, Aug 29 2018
-
Mathematica
RealDigits[E + EulerGamma + Pi + GoldenRatio, 10, 50][[1]] (* or *) N[E + EulerGamma + Pi + GoldenRatio, 25] (* G. C. Greubel, Sep 16 2016 *)
-
PARI
default(realprecision, 200); exp(1) + Euler + Pi + (1+sqrt(5))/2\\ G. C. Greubel, Aug 29 2018