OFFSET
1,2
REFERENCES
Steven R. Finch, Mathematical Constants, Cambridge University Press, 2003, Section 4.6 Fransén-Robinson constant, p. 262.
LINKS
Steven R. Finch Errata and Addenda to Mathematical Constants p. 35.
Eric Weisstein's World of Mathematics, Fransén-Robinson Constant
Wikipedia, Reciprocal gamma function
FORMULA
(1/I)*Integral_{x>=0} x/gamma(x) dx where I = Integral_{x>=0} 1/gamma(x) dx is the Fransén-Robinson constant.
EXAMPLE
1.93456704214788472118371470436917892438217559226658848385544754...
MATHEMATICA
digits = 100;
I0 = NIntegrate[1/Gamma[x], {x, 0, Infinity}, WorkingPrecision -> digits + 5];
M1 = (1/I0) NIntegrate[x/Gamma[x], {x, 0, Infinity}, WorkingPrecision -> digits + 5];
RealDigits[M1, 10, digits][[1]]
PROG
(PARI) default(realprecision, 120); intnum(x=0, [[1], 1], x/gamma(x))/intnum(x=0, [[1], 1], 1/gamma(x)) \\ Vaclav Kotesovec, May 14 2016
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Jean-François Alcover, May 13 2016
STATUS
approved