A000888 a(n) = (2*n)!^2 / ((n+1)!*n!^3).
1, 2, 12, 100, 980, 10584, 121968, 1472328, 18404100, 236390440, 3103161776, 41469525552, 562496897872, 7726605740000, 107289439704000, 1503840313184400, 21252802073091300, 302539888334593800, 4334635827016110000, 62464383654579522000, 904841214653480504400
Offset: 0
Examples
G.f.: 1 + 2*x + 12*x^2 + 100*x^3 + 980*x^4 + 10584*x^5 + 121968*x^6 + ...
References
- E. R. Hansen, A Table of Series and Products, Prentice-Hall, Englewood Cliffs, NJ, 1975, p. 93.
- T. M. MacRobert, Functions of a Complex Variable, 4th ed., Macmillan & Co., London, 1958, p. 177.
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..100
- Marco S. Bianchi, Protected and uniformly transcendental, arXiv:2306.06239 [hep-th], 2023.
- M. Bousquet-Mélou and M. Mishna, Walks with small steps in the quarter plane, arXiv:0810.4387 [math.CO], 2008-2009.
- David Callan, Bijections for the identity 4^n = ... .
- Kiran S. Kedlaya and Andrew V. Sutherland, Hyperelliptic curves, L-polynomials and random matrices, arXiv:0803.4462 [math.NT], 2008-2010.
- Helmut Prodinger, Two New Identities Involving the Catalan Numbers: A classical approach, arXiv:1911.07604 [math.CO], 2019.
- Ralf Steiner, Beispiele zur modifizierten Wallis-Lambert-Reihe, 2016.
Programs
-
Magma
[(Factorial(2*n))^2/(Factorial(n))^4/(n+1): n in [0..20]]; // Vincenzo Librandi, Aug 15 2011
-
Maple
[seq(binomial(2*n,n)^2/(n+1),n=0..17)]; # Zerinvary Lajos, May 27 2006
-
Mathematica
f[n_] := Binomial[2 n, n]^2/(n + 1); Array[f, 18, 0] (* Robert G. Wilson v *) a[ n_] := SeriesCoefficient[ (1/8) (EllipticE[ 16 x] - (1 - 16 x) EllipticK[ 16 x]) / (Pi/2), {x, 0, n + 1}]; (* Michael Somos, Jan 23 2012 *)
-
PARI
{a(n) = if( n<0, 0, (2*n)!^2 / n!^4 / (n+1))}; /* Michael Somos, Sep 11 2005 */
Formula
G.f.: 1/4*((16*x-1)*EllipticK(4*x^(1/2)) + EllipticE(4*x^(1/2)))/x/Pi. - Vladeta Jovovic, Oct 12 2003
Given G.f. A(x), y = x*A(x) satisfies y = y'' * (1 - 16*x) * x/4. - Michael Somos, Sep 11 2005
a(n) = binomial(2*n,n)^2/(n+1). - Zerinvary Lajos, May 27 2006
G.f.: 2F1(1/2,1/2;2;16*x). - Paul Barry, Sep 03 2008
a(n) = 2*A125558(n) (n >= 1). - Olivier Gérard, Feb 16 2011
A002894(n) = (n+1) * a(n). A001246(n) = a(n) / (n+1). A089835(n) = n! * a(n). - Michael Somos, May 12 2012
G.f.: 1 + 4*x/(G(0)-4*x) where G(k) = 4*x*(2*k+1)^2 + (k+1)*(k+2) - 4*x*(k+1)*(k+2)*(2*k+3)^2/G(k+1); (continued fraction). - Sergei N. Gladkovskii, Jul 30 2012
D-finite with recurrence: (n+1)*(n+2)*a(n+1) = 4*(2*n+1)^2*a(n). - Vaclav Kotesovec, Sep 11 2012
a(n) = C(n)*binomial(2*n,n) = Sum_{k=0..2*n} binomial(2*n,k)*C(k)*C(2*n-k) where C(k) are Catalan numbers (A000108), see Prodinger. - Michel Marcus, Nov 19 2019
Sum_{n>=0} a(n)/16^n = 4/Pi (A088538). - Amiram Eldar, May 06 2023
Comments