OFFSET
1,1
COMMENTS
This is the second smallest solution, the smallest one being purely imaginary A377297.
When expressed in terms of Gauss's Pi function, it is the smallest real solution to Pi(z) = Pi(-z).
FORMULA
Gamma(1+2.3611910871634166...) = Gamma(1-2.3611910871634166...) = 2.8607322727573070...
Smallest positive real root of the equation x*Sin(Pi*x)*Gamma(x)^2 = Pi. - Vaclav Kotesovec, Oct 25 2024
EXAMPLE
2.36119108716341663449734103963240374354852871572581359610190443169213741...
MAPLE
Digits:= 120:
fsolve(GAMMA(1+z)=GAMMA(1-z), z=1..3); # Alois P. Heinz, Oct 25 2024
MATHEMATICA
RealDigits[x /. FindRoot[Gamma[1 + x] == Gamma[1 - x], {x, 5/2}, WorkingPrecision -> 120]][[1]] (* Amiram Eldar, Oct 23 2024 *)
RealDigits[x /. FindRoot[x*Sin[Pi*x]*Gamma[x]^2 == Pi, {x, 2}, WorkingPrecision -> 120]][[1]](* Vaclav Kotesovec, Oct 25 2024 *)
PROG
(Python)
from mpmath import mp, nstr, factorial, findroot
mp.dps = 120
root = findroot(lambda z: factorial(z)-factorial(-z), 2.4)
A377302 = [int(d) for d in nstr(root, n=mp.dps)[:-1] if d != '.']
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Jwalin Bhatt, Oct 23 2024
STATUS
approved