OFFSET
1,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
-2.5183542699334532853335975850400845707242705131362137...
MAPLE
Digits:= 150: fsolve(GAMMA(x)+Psi(x)=0, x=-2.5);
MATHEMATICA
FindRoot[Gamma[x]+PolyGamma[x]==0, {x, -2.5}, WorkingPrecision->120][[1, 2]] // RealDigits[#, 10, 104]& // First
PROG
(PARI) default(realprecision, 120); solve(x = -2.6, -2.4, gamma(x)+psi(x))
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Iaroslav V. Blagouchine, Feb 16 2016
STATUS
approved
