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.

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

Original entry on oeis.org

1, 2, 4, 32, 4096, 201326592, 3283124128353091584, 26520146032764463901929624736590416838656, 840987221884558487834659180201583257033385988411167452990072842049923846092011283152896
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. A092798. Denominators are A122217. Reduced numerators are A122214.

Programs

  • Mathematica
    a[n_] := Product[(2k)^Binomial[n, 2k-1], {k, 1, n/2 // Ceiling}];
    Table[a[n], {n, 0, 8}] (* Jean-François Alcover, Nov 18 2018 *)

Formula

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

Extensions

Offset and truncated term 840987221884... corrected by Jean-François Alcover, Nov 18 2018