A227569 Decimal expansion of maximal value of function F[a(n); b(n)] for pairs of complements a(n) and b(n) of natural numbers A000027, where a(n) = odd numbers (A005408) and b(n) = even numbers (A005843); see Comments for the definition of function F[a(n); b(n)].
2, 0, 5, 9, 4, 0, 7, 4, 0, 5, 3, 4, 2, 5, 7, 6, 1, 4, 4, 5, 3, 9, 4, 7, 5, 4, 9, 9, 2, 3, 3, 2, 7, 8, 6, 1, 2, 9, 7, 7, 2, 5, 4, 7, 2, 6, 3, 3, 5, 3, 4, 0, 2, 0, 9, 2, 9, 9, 7, 1, 8, 7, 7, 9, 8, 0, 5, 4, 4, 2, 8, 1, 9, 6, 8, 4, 6, 1, 3, 5, 3, 5, 7, 4, 8, 1, 8, 5, 7, 4, 4, 8, 3, 4, 9, 7, 8, 2, 8, 3, 1, 5, 0, 1, 5
Offset: 1
Examples
2.05940740534257614453947549923327861297725472633534020929971877980544281968...
Links
- G. C. Greubel, Table of n, a(n) for n = 1..10000
- Eric Weisstein's World of Mathematics, Engel Expansion
- Googology Wiki, Double factorial
Programs
-
Magma
SetDefaultRealField(RealField(112)); R:= RealField(); -1 + Exp(1/2)*(1 + Sqrt(Pi(R)/2)*Erf(1/Sqrt(2)) ); // G. C. Greubel, Apr 01 2019
-
Mathematica
RealDigits[Sqrt[E] -1 + Sqrt[E*Pi/2]*Erf[1/Sqrt[2]], 10, 105][[1]] (* or *) RealDigits[Sum[1/n!!, {n, 125}], 10, 105][[1]] (* Robert G. Wilson v, Apr 09 2014 *)
-
PARI
default(realprecision, 100); exp(1/2) - 1 + sqrt(exp(1)*Pi/2)*(1-erfc(1/sqrt(2))) \\ G. C. Greubel, Apr 01 2019
-
Sage
numerical_approx(-1 + exp(1/2)*(1 + sqrt(pi/2)*erf(1/sqrt(2))), digits=112) # G. C. Greubel, Apr 01 2019
Comments