cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A122217 Denominators in infinite products for Pi/2, e and e^gamma (unreduced).

Original entry on oeis.org

1, 1, 3, 27, 3645, 184528125, 3065257232666015625, 25071642180724968784488737583160400390625, 802200753381108669054307548505058630413812174354826201039259103708900511264801025390625
Offset: 0

Views

Author

Jonathan Sondow, Aug 26 2006

Keywords

Examples

			Pi/2 = (2/1)^(1/2) * (4/3)^(1/4) * (32/27)^(1/8) *
(4096/3645)^(1/16) * ...,
e = (2/1)^(1/1) * (4/3)^(1/2) * (32/27)^(1/3) * (4096/3645)^(1/4) * ... and
e^gamma = (2/1)^(1/2) * (4/3)^(1/3) * (32/27)^(1/4) * (4096/3645)^(1/5) *
...
		

Crossrefs

Cf. A092799. Numerators are A122216. Reduced denominators are A122215.

Programs

  • Mathematica
    Table[Product[(2k-1)^Binomial[n,2k-2], {k,1+Floor[n/2]}], {n,0,8}] (* T. D. Noe, Nov 16 2006 *)

Formula

a(n) = Product_{k=1..floor(n/2)+1} (2k-1)^binomial(n,2k-2).

Extensions

Corrected by T. D. Noe, Nov 16 2006