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.

A007685 a(n) = Product_{k=1..n} binomial(2*k,k).

Original entry on oeis.org

1, 2, 12, 240, 16800, 4233600, 3911846400, 13425456844800, 172785629592576000, 8400837310791045120000, 1552105098192510332190720000, 1094904603628138948657963991040000, 2960792853328653706847125274154762240000, 30794022150329995743434211126374020153344000000
Offset: 0

Views

Author

Keywords

References

  • H. W. Gould, A class of binomial sums and a series transform, Utilitas Math., 45 (1994), 71-83.
  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

Programs

  • Maple
    [seq(mul(binomial(2*k,k),k=1..n),n=0..16)];
  • Mathematica
    Table[Product[Binomial[2*k, k], {k, 1, n}], {n, 0, 50}] (* G. C. Greubel, Feb 02 2017 *)
  • PARI
    a(n) = prod(k=1,n, binomial(2*k, k)); \\ Michel Marcus, Sep 18 2015

Formula

a(0) = 1, a(n) = (2^(2*n)*a(n - 1)*Gamma(n + 1/2))/(sqrt(Pi)*Gamma(n + 1)). - Ilya Gutkovskiy, Sep 18 2015
a(n) = (2^(n^2 + n - 1/24)*A^(3/2)*Pi^(-n/2 - 1/4)*BarnesG(n + 3/2))/(e^(1/8)*BarnesG(n + 2)), where A is the Glaisher-Kinkelin constant (A074962), BarnesG is the Barnes G-function. - Ilya Gutkovskiy, Sep 18 2015
a(n) ~ A^(3/2) * 2^(n^2 + n - 7/24) * exp(n/2 - 1/8) / (Pi^((n+1)/2) * n^(n/2 + 3/8)), where A = A074962 is the Glaisher-Kinkelin constant. - Vaclav Kotesovec, Apr 16 2016
For n>0, a(n) = 2^((n+1)/2) * sqrt(BarnesG(2*n)) * Gamma(2*n) / (n * BarnesG(n)^2 * Gamma(n)^(7/2)). - Vaclav Kotesovec, Apr 20 2024
Product_{1 <= j <= i <= n} (i + j)/(i - j + 1). - Peter Bala, Oct 25 2024