OFFSET
0,1
LINKS
J. Borwein et al., Experimentation in Mathematics, 2004, section 1.2.
László Tóth, Transcendental Infinite Products Associated with the ±1 Thue-Morse Sequence, Journal of Integer Sequences, Vol. 23 (2020), Article 20.8.2.
Eric Weisstein's World of Mathematics, Infinite Product.
FORMULA
Equals Pi*sinh(Pi) / (cosh(sqrt(2)*Pi) - cos(sqrt(2)*Pi)). - Vaclav Kotesovec, Dec 08 2015
EXAMPLE
0.8480540493529003921296501834...
MAPLE
Digits := 120 :
m := 1:
for r from 2 to 10 do
omega := cos(Pi/r)+I*sin(Pi/r) :
x := (-1)^(m+1)*2*m*m!/r*mul( GAMMA(-m*omega^j)^(-(-1)^j), j=1..2*r-1) ;
x := Re(evalf(x)) ;
print(r, x) ;
od:
MATHEMATICA
RealDigits[ -1/2*Pi*Csc[(-1)^(1/4)*Pi]*Csc[(-1)^(3/4)*Pi]*Sinh[Pi] // Re, 10, 105] // First (* Jean-François Alcover, Feb 11 2013 *)
RealDigits[Re[N[Product[(n^4 - 1)/(n^4 + 1), {n, 2, Infinity}], 110]]][[1]] (* Bruno Berselli, Apr 02 2013 *)
PROG
(PARI) Pi*sinh(Pi)/(cosh(Pi*sqrt(2))-cos(Pi*sqrt(2))) \\ Michel Marcus, Sep 07 2020
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
R. J. Mathar, Feb 01 2009
EXTENSIONS
More terms from Jean-François Alcover, Feb 11 2013
STATUS
approved