OFFSET
1,1
LINKS
Eric Weisstein's World of Mathematics, Infinite Product.
FORMULA
Equals exp(Sum_{j>=1} (-(-1)^j*Zeta(5*j)/j)).
Equals 1/(Gamma(1/(2*phi^2) - i*(5^(1/4)/(2*sqrt(phi)))) * Gamma(phi^2/2 + i*5^(1/4)*(sqrt(phi)/2)) * Gamma(phi^2/2 - i*5^(1/4)*(sqrt(phi)/2)) * Gamma(1/(2*phi^2) + i*(5^(1/4)/(2*sqrt(phi))))), where i is the imaginary unit and phi = A001622 = (1+sqrt(5))/2 is the golden ratio.
EXAMPLE
2.07422504479637891390708968594384056977125337962227288334734036988361960596259...
MAPLE
evalf(Product(1 + 1/j^5, j = 1..infinity), 120);
MATHEMATICA
RealDigits[Chop[N[Product[(1 + 1/n^5), {n, 1, Infinity}], 120]]][[1]]
With[{g = GoldenRatio}, Chop[N[1/(Gamma[1/(2*g^2) - I*5^(1/4)/(2*Sqrt[g])] * Gamma[g^2/2 + I*5^(1/4) * Sqrt[g]/2] * Gamma[g^2/2 - I*5^(1/4) * Sqrt[g]/2] * Gamma[1/(2*g^2) + I*5^(1/4)/(2*Sqrt[g])]), 120]]]
N[1/Abs[Gamma[Exp[2*Pi*I/5]]*Gamma[Exp[6*Pi*I/5]]]^2, 120] (* Vaclav Kotesovec, Apr 27 2020 *)
PROG
(PARI) default(realprecision, 120); exp(sumalt(j=1, -(-1)^j*zeta(5*j)/j))
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Vaclav Kotesovec, Mar 29 2019
STATUS
approved