OFFSET
0,1
COMMENTS
Gamma(x) stands for the gamma function (Euler's integral of the second kind), Psi(x) denotes the digamma function (logarithmic derivative of the gamma function).
EXAMPLE
0.6388787411601983229952762472475406150969427223844435...
MAPLE
Digits:= 150; fsolve(GAMMA(x)+Psi(x)=0, x);
MATHEMATICA
FindRoot[Gamma[x]+PolyGamma[x]==0, {x, 0.6}, WorkingPrecision->120][[1, 2]] // RealDigits[#, 10, 106]& // First
PROG
(PARI) default(realprecision, 120); solve(x = 0.60, 0.68, gamma(x)+psi(x))
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Iaroslav V. Blagouchine, Feb 15 2016
STATUS
approved