OFFSET
1,2
COMMENTS
H(x + y) >= H(x) + H(y) (i.e., H is superadditive) for all real numbers x, y >= c.
Note: H(x) = Gamma(x) * (1 + sin(Pi*x)/(2*Pi) * (Psi(x/2) - Psi((x+1)/2))) for gamma function Gamma(x) and digamma function Psi(x).
LINKS
Horst Alzer, A superadditive property of Hadamard’s gamma function, Abhandlungen aus dem Mathematischen Seminar der Universität Hamburg, 1 (2009), 11-23.
Wikipedia, Hadamard's gamma function.
EXAMPLE
1.50317609234327640372867713768804501078769660416266...
MAPLE
Digits:= 150:
H:= x-> GAMMA(x)*(1+sin(Pi*x)/(2*Pi)*(Psi(x/2)-Psi((x+1)/2))):
fsolve(H(2*c)=2*H(c), c=1.5..2.0); # Alois P. Heinz, Feb 20 2025
MATHEMATICA
H[x_] := ResourceFunction["HadamardGamma"][x]; RealDigits[x /. FindRoot[H[2*x] == 2*H[x], {x, 3/2, 2}, WorkingPrecision -> 120]][[1]] (* Amiram Eldar, Feb 25 2025 *)
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Lee A. Newberg, Feb 20 2025
STATUS
approved
