A002894 a(n) = binomial(2n, n)^2.
1, 4, 36, 400, 4900, 63504, 853776, 11778624, 165636900, 2363904400, 34134779536, 497634306624, 7312459672336, 108172480360000, 1609341595560000, 24061445010950400, 361297635242552100, 5445717990022688400, 82358080713306090000, 1249287673091590440000
Offset: 0
Examples
G.f. = 1 + 4*x + 36*x^2 + 400*x^3 + 4900*x^4 + 63504*x^5 + 853776*x^6 + ... - _Michael Somos_, Aug 06 2014 From _Peter Bala_, Jan 26 2018: (Start) a(2) = 36: The thirty six 3 x k arrays with columns belonging to the set of column vectors S = {[1,0,0], [0,1,0], [1,0,1], [0,1,1]} and having all row sums equal to 2 are the 6 distinct arrays obtained by permuting the columns of /1 1 0 0\ |0 0 1 1|, \0 0 1 1/ the 6 distinct arrays obtained by permuting the columns of /0 0 1 1\ |1 1 0 0| \0 0 1 1/ and the 24 arrays obtained by permuting the columns of /1 0 1 0\ |0 1 0 1|. (End) \0 0 1 1/
References
- M. Abramowitz and I. A. Stegun, eds., Handbook of Mathematical Functions, National Bureau of Standards Applied Math. Series 55, 1964 (and various reprintings), p. 591,828.
- J. M. Borwein and P. B. Borwein, Pi and the AGM, Wiley, 1987, p. 8.
- Matthijs Coster, Over 6 families van krommen [On 6 families of curves], Master's Thesis (unpublished), Aug 26 1983.
- Leonard Lipshitz and A. van der Poorten. "Rational functions, diagonals, automata and arithmetic." In Number Theory, Richard A. Mollin, ed., Walter de Gruyter, Berlin (1990): 339-358.
- N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
- N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
Links
- T. D. Noe, Table of n, a(n) for n = 0..100
- M. Abramowitz and I. A. Stegun, eds., Handbook of Mathematical Functions, National Bureau of Standards, Applied Math. Series 55, Tenth Printing, 1972 [alternative scanned copy].
- R. Bacher, Meander algebras, Institut Fourier, 1999.
- E. Barcucci, A. Frosini and S. Rinaldi, On directed-convex polyominoes in a rectangle, Discr. Math., 298 (2005). 62-78.
- Arnaud Beauville, Les familles stables de courbes elliptiques sur P^1 admettant quatre fibres singulières, Comptes Rendus, Académie Sciences Paris, no. 294, May 24 1982, 657-660. MR0664643 (83h:14008)
- Alin Bostan, Armin Straub, and Sergey Yurkevich, On the representability of sequences as constant terms, arXiv:2212.10116 [math.NT], 2022.
- Tricia Muldoon Brown, The Problem of Pawns, The Electronic Journal of Combinatorics (2019) Vol. 26, Issue 3, #P3.21. Also arXiv:1811.09606, [math.CO], 2018.
- John Maxwell Campbell, New series involving harmonic numbers and squared central binomial coefficients, Rocky Mountain J. Math., 49 (2019), 2513-2544.
- C. Domb, On the theory of cooperative phenomena in crystals, Advances in Phys., 9 (1960), 149-361.
- Steffen Eger, On the Number of Many-to-Many Alignments of N Sequences, arXiv:1511.00622 [math.CO], 2015.
- Murray Elder, Cogrowth, 2011.
- M. Elder, A. Rechnitzer, E. J. Janse van Rensburg, and T. Wong, The cogrowth series for BS(N,N) is D-finite, arXiv:1309.4184 [math.GR], 2013.
- Philippe Flajolet and Robert Sedgewick, Analytic Combinatorics, 2009; see page 90.
- Florian Fürnsinn and Sergey Yurkevich, Algebraicity of hypergeometric functions with arbitrary parameters, arXiv:2308.12855 [math.CA], 2023.
- Davidson Noby Joseph and Igor Boettcher, Walking on Archimedean Lattices: Insights from Bloch Band Theory, arXiv:2507.12662 [cond-mat.stat-mech], 2025. See p. 18.
- Kiran S. Kedlaya and Andrew V. Sutherland, Hyperelliptic curves, L-polynomials and random matrices, arXiv:0803.4462 [math.NT], 2010.
- Markus Kuba and Alois Panholzer, Lattice paths and the diagonal of the cube, arXiv:2411.03930 [math.CO], 2024. See p. 14.
- L. Lipshitz and A. J. van der Poorten, Rational functions, diagonals, automata and arithmetic
- Raul Prisacariu, Littlewood Polynomials of Degree n with Closed Lill Paths
- Eric M. Rains, High powers of random elements of compact Lie groups, Probability Theory and Related Fields 107 (1997), 219-241.
- Grzegorz Siudem and Agata Fronczak, Bell polynomials in the series expansions of the Ising model, arXiv:2007.16132 [math-ph], 2020.
- Eric Weisstein's World of Mathematics, Lattice Path.
- D. Zagier, Integral solutions of Apéry-like recurrence equations. See line G in sporadic solutions table of page 5.
Crossrefs
Programs
-
Magma
[Binomial(2*n, n)^2: n in [0..20]]; // Vincenzo Librandi, Aug 07 2014
-
Maple
A002894 := n-> binomial(2*n,n)^2.
-
Mathematica
CoefficientList[Series[Hypergeometric2F1[1/2, 1/2, 1, 16x], {x, 0, 20}], x] Table[Binomial[2n,n]^2,{n,0,20}] (* Harvey P. Dale, Jul 06 2011 *) a[ n_] := SeriesCoefficient[ EllipticK[16 x] / (Pi/2), {x, 0, n}]; (* Michael Somos, Aug 06 2014 *) a[n_] := 16^n HypergeometricPFQ[{1/2, -2 n, 2 n + 1}, {1, 1}, 1]; Table[a[n], {n, 0, 19}] (* Peter Luschny, Mar 14 2018 *)
-
PARI
{a(n) = binomial(2*n, n)^2};
-
PARI
{a(n) = if( n<0, 0, polcoeff( polcoeff( polcoeff( 1 / (1 - x * (y + z + 1/y + 1/z)) + x * O(x^(2*n)), 2*n), 0), 0))}; /* Michael Somos, Jun 12 2004 */
-
Sage
[binomial(2*n, n)**2 for n in range(17)] # Zerinvary Lajos, Apr 21 2009
Formula
D-finite with recurrence: (n+1)^2*a(n+1) = 4*(2*n + 1)^2*a(n). - Matthijs Coster, Apr 28 2004
a(n) ~ Pi^(-1)*n^(-1)*2^(4*n). - Joe Keane (jgk(AT)jgk.org), Jun 06 2002
G.f.: F(1/2, 1/2; 1; 16*x) = 1 / AGM(1, (1 - 16*x)^(1/2)) = K(4*sqrt(x)) / (Pi/2), where AGM(x, y) is the arithmetic-geometric mean of Gauss and Legendre. - Michael Somos, Mar 04 2003
G.f.: 2*EllipticK(4*sqrt(x))/Pi, using Maple's convention for elliptic integrals.
E.g.f.: Sum_{n>=0} a(n)*x^(2*n)/(2*n)! = BesselI(0, 2x)^2.
a(n) = A000984(n)^2. - Jonathan Vos Post, Jun 17 2007
E.g.f.: (BesselI(0, 2*x))^2 = 1+2*x^2/(U(0)-2*x^2); U(k) = 2*x^2*(2*k+1)+(k+1)^3-2*x^2*(2*k+3)*(k+1)^3/U(k+1); (continued fraction). - Sergei N. Gladkovskii, Nov 23 2011
In generally, for (BesselI(b, 2x))^2=((x^(2*b))/(GAMMA(b+1))^2)*(1+(2*x^2)*(2*b+1)/(Q(0)-(2*x^2)*(2*b+1)); Q(k)=(2*x^2)*(2*k+2*b+1)+(k+1)*(k+b+1)*(k+2*b+1)-(2*x^2)*(k+1)*(k+b+1)*(k+2*b+1)*(2*k+2*b+3)/Q(k+1)); (continued fraction). - Sergei N. Gladkovskii, Nov 23 2011
G.f.: G(0)/2, where G(k)= 1 + 1/(1 - 4*(2*k+1)^2*x*(1+4*x)^2/(4*(2*k+1)^2*x*(1+4*x)^2 + (k+1)^2*(1+4*x)^2/G(k+1) )); (continued fraction). - Sergei N. Gladkovskii, Aug 01 2013
0 = +a(n)*(+393216*a(n+2) -119040*a(n+3) +6860*a(n+4)) +a(n+1)*(-16128*a(n+2) +6928*a(n+3) -465*a(n+4)) +a(n+2)*(+36*a(n+2) -63*a(n+3) +6*a(n+4)) for all n in Z. - Michael Somos, Aug 06 2014
Integral representation as the n-th moment of a positive function W(x) on (0,16), in Maple notation, W(x) = EllipticK(sqrt(1-x/16))/(2*Pi^2*sqrt(x)); a(n) = Integral_{x=0..16} x^n*W(x) dx, n>=0. The function W(x) is singular at x=0 and W(16) = 1/(16*Pi). This representation is unique since W(x) is the solution of the Hausdorff moment problem. - Stanley Smith and Karol A. Penson, Jun 19 2015
a(n) ~ 16^n*(2-2/(8*n+2)^2+21/(8*n+2)^4-671/(8*n+2)^6+45081/(8*n+2)^8)^2/((4*n+1)* Pi). - Peter Luschny, Oct 14 2015
a(n) = binomial(2*n,n)*binomial(2*n,n) = ( [x^n](1 + x)^(2*n) ) *( [x^n](1 + x)^(2*n) ) = [x^n](F(x)^(4*n)), where F(x) = 1 + x + x^2 + 4*x^3 + 20*x^4 + 120*x^5 + 798*x^6 + 5697*x^7 + ... appears to have integer coefficients. For similar results see A000897, A002897, A006480, A008977, A186420 and A188662. - Peter Bala, Jul 14 2016
a(n) = Sum_{k = 0..n} binomial(2*n + k,k)*binomial(n,k)^2. Cf. A005258(n) = Sum_{k = 0..n} binomial(n + k,k)*binomial(n,k)^2. - Peter Bala, Jul 27 2016
a(n) = A241530(2*n), n >= 0. - Wolfdieter Lang, Sep 06 2016
E.g.f.: 2F2(1/2,1/2; 1,1; 16*x). - Ilya Gutkovskiy, Jan 23 2018
a(n) = 16^n*hypergeom([1/2, -2*n, 2*n + 1], [1, 1], 1). - Peter Luschny, Mar 14 2018
The right-hand side of the binomial coefficient identity Sum_{k = 0..n} C(n,k)*C(n+k,k)*C(2*n+2*k,n+k)*(-4)^(n-k) = a(n). - Peter Bala, Mar 16 2018
a(n) = [x^n] (1 - x)^(2*n) * P(2*n,(1 + x)/(1 - x)), where P(n,x) denotes the n-th Legendre polynomial. Compare with A245086(n) = [x^n] (1 - x)^(2*n) * P(n,(1 + x)/(1 - x)). - Peter Bala, Mar 23 2022
a(n) = Sum_{k=0..n} multinomial(2n [k k (n-k) (n-k)]), which is another way to count random walks on Z^2, with steps of (0,+-1) or (+-1,0), that return to the point of origin after 2n steps (not necessarily for the first time), as is C(2n,n)^2. - Shel Kaphan, Jan 12 2023
0 = a(n)*(+393216*a(n+2) -119040*a(n+3) +6860*a(n+4)) +a(n+1)*(-16128*a(n+2) +6928*a(n+3) -465*a(n+4)) +a(n+2)*(+36*a(n+2) -63*a(n+3) +6*a(n+4)) for n>=0. - Michael Somos, May 30 2023
From Peter Bala, Sep 12 2023: (Start)
Right-hand side of the binomial coefficient identities
1) Sum_{k = 0..n} (-1)^(n+k) * C(n,k)*C(n+k,n)*C(2*n+k,n) = a(n).
2) 2*Sum_{k = 0..n} (-1)^(n+k) * C(n,k)*C(n+k-1,n)*C(2*n+k-1,n) = a(n) for n >= 1.
3) (4/3)*Sum_{k = 0..n} (-1)^(n+k) * C(n,k)*C(n+k,n)*C(2*n+k-1,n) = a(n) for n >= 1. (End)
Extensions
Edited by N. J. A. Sloane, Feb 18 2016
Comments