A188720 Decimal expansion of (e+sqrt(4+e^2))/2.
3, 0, 4, 6, 5, 2, 4, 6, 9, 5, 3, 3, 3, 4, 7, 2, 4, 7, 1, 8, 1, 1, 4, 0, 1, 7, 6, 6, 5, 8, 7, 1, 5, 5, 2, 4, 3, 2, 7, 4, 6, 0, 7, 0, 5, 8, 8, 7, 9, 7, 9, 4, 7, 7, 4, 5, 7, 7, 4, 2, 2, 4, 9, 6, 3, 1, 2, 0, 4, 6, 2, 8, 7, 4, 0, 0, 0, 6, 5, 6, 0, 6, 0, 1, 8, 9, 8, 5, 5, 3, 5, 0, 7, 3, 6, 5, 9, 4, 2, 6, 8, 0, 6, 1, 2, 7, 1, 1, 0, 2, 5, 2, 3, 4, 2, 9, 9, 9, 8, 0, 8, 1, 3, 2, 0, 9, 6, 8, 1, 5
Offset: 1
Examples
3.046524695333472471811401766587155243274607058879794774577422496312...
Links
Programs
-
Magma
SetDefaultRealField(RealField(100)); (Exp(1) +Sqrt(4+Exp(2)))/2; // G. C. Greubel, Oct 31 2018
-
Maple
evalf((exp(1)+sqrt(4+exp(2)))/2,140); # Muniru A Asiru, Nov 01 2018
-
Mathematica
r=E; t = (r + (4+r^2)^(1/2))/2; FullSimplify[t] N[t, 130] RealDigits[N[t, 130]][[1]] RealDigits[(E+Sqrt[4+E^2])/2,10,150][[1]] (* Harvey P. Dale, Jan 07 2015 *)
-
PARI
default(realprecision, 100); (exp(1) + sqrt(4 + exp(2)))/2 \\ G. C. Greubel, Oct 31 2018
Comments