OFFSET
1,1
REFERENCES
Steven R. Finch, Mathematical Constants, Cambridge University Press, 2003, Section 3.3 Landau-Kolmogorov constants, p. 214.
LINKS
Eric Weisstein's MathWorld, Landau-Kolmogorov Constants
FORMULA
C(5,1) = C(5,4) = sqrt(5)/(2^(4/5)*sqrt(c)), where c is the least positive root of f(c) = Pi^2/10, f(c) being integral_{0..infinity} (2*arctanh(x*sqrt(c/(1 + x^10))))/(x*sqrt(1 + x^10)).
EXAMPLE
2.702467331401968417841785516708665999600741467093925...
MATHEMATICA
digits = 102; f[c_?NumericQ] := NIntegrate[(2*ArcTanh[x*Sqrt[c/(1 + x^10)]])/(x*Sqrt[1 + x^10]), {x, 0, Infinity}, WorkingPrecision -> digits+5]; c0 = c /. FindRoot[f[c] == Pi^2/10, {c, 1/5}, WorkingPrecision -> digits+5]; C0[n_, 1] := (((n-1)^(1/n) + (n-1)^(-1+1/n))/c)^(1/2); RealDigits[C0[5, 1] /. c -> c0, 10, digits] // First
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Jean-François Alcover, Sep 15 2014
STATUS
approved