OFFSET
0,1
LINKS
J. Borwein et al., Experimentation in Mathematics, 2004, section 1.2.
E. W. Weisstein, Infinite Product, MathWorld.
EXAMPLE
0.99801282617298278419003981450896856553...
MATHEMATICA
f[k_] := Sin[(-1)^(k/10)*Pi]; RealDigits[Pi/(5*Sinh[Pi])*Product[f[k], {k, {2, 4, 6, 8}}]/ Product[f[k], {k, {1, 3, 7, 9}}] // Re, 10, 105] // First (* Jean-François Alcover, Feb 12 2013 *)
PROG
(PARI) prodnumrat(1-2/(n^10+1), 2) \\ Charles R Greathouse IV, Apr 29 2026
(PARI) real(vecprod(apply(y->gamma(2-y), polroots(x^10+1)))/vecprod(apply(y->gamma(2-y), polroots(x^10-1)))) \\ Charles R Greathouse IV, Apr 29 2026
(PARI) z(t)=exp(I*Pi*t)
Pi/(5*sinh(Pi)) * abs(sin(Pi*z(1/5))*sin(Pi*z(2/5)))^2 / abs(sin(Pi*z(1/10))*sin(Pi*z(3/10)))^2 \\ Charles R Greathouse IV, Apr 29 2026
(PARI) f(t)=sin(Pi*exp(I*Pi*t))^2
Pi/5*abs(f(.2)*f(.4)/f(.1)/f(.3))/sinh(Pi) \\ Charles R Greathouse IV, Apr 29 2026
CROSSREFS
KEYWORD
AUTHOR
R. J. Mathar, Feb 01 2009
EXTENSIONS
More terms from Jean-François Alcover, Feb 12 2013
STATUS
approved
