A184423 a(n) = (2*n)!*(3*n)!/n!^5.
1, 12, 540, 33600, 2425500, 190702512, 15849497664, 1369618398720, 121821136479900, 11079206239530000, 1025579963180813040, 96310511463483233280, 9152842704012278107200, 878622906816654279840000
Offset: 0
Examples
G.f.: A(x) = 1 + 12*x + 540*x^2 + 33600*x^3 + 2425500*x^4 +... G.f. of A184424 equals A(x)^(1/2): A(x)^(1/2) = 1 + 6*x + 252*x^2 + 15288*x^3 + 1089270*x^4 + 84963060*x^5 +...+ [(3^n/n!^2)*Product_{k=1..n} (6*k-4)*(6*k-5)]*x^n +...
Links
- Gheorghe Coserea, Table of n, a(n) for n = 0..200
- Timothy Huber, Daniel Schultz, and Dongxi Ye, Ramanujan-Sato series for 1/pi, Acta Arith. (2023) Vol. 207, 121-160. See p. 11.
- Romeo Meštrović, Wolstenholme's theorem: Its Generalizations and Extensions in the last hundred and fifty years (1862--2012), arXiv:1111.3057 [math.NT], 2011.
- Titus Piezas III, 0013: Article 3 (Pi Formulas and the Monster Group).
Programs
-
Mathematica
Table[((2n)!(3n)!)/(n!)^5,{n,0,20}] (* Harvey P. Dale, Dec 18 2018 *)
-
PARI
{a(n)=(3*n)!*(2*n)!/n!^5}
-
PARI
{a(n)=polcoeff(sum(m=0,n,3^m*prod(k=1,m,(6*k-4)*(6*k-5))/m!^2*x^m+x*O(x^n))^2,n)}
Formula
Self-convolution of A184424:
a(n) = Sum_{k=0..n} A184424(k)*A184424(n-k) where A184424(n) = (3^n/n!^2)*Product_{k=1..n} (6*k-4)*(6*k-5).
a(n) = 6 * (2*n - 1) * (3*n - 1) * (3*n - 2) / n^3 * a(n-1) if n>0. - Michael Somos, May 31 2012
0 = (x^2-108*x^3)*y''' + (3*x-486*x^2)*y''+ (1-348*x)*y' - 12*y, where y is g.f. - Gheorghe Coserea, Jul 15 2016
a(n) ~ 3^(1/2)/(2*Pi^(3/2)) * n^(-3/2) * 108^n. - Ilya Gutkovskiy, Jul 15 2016
a(n) = C(2*n,n)^2 * C(3*n,n) = ( [x^n](1 + x)^(2*n) )^2 * ( [x^n](1 + x)^(3*n) ) = [x^n]( F(x)^(12*n) ), where [x^n] is the coefficient extraction operator and where F(x) = 1 + x + 11*x^2 + 350*x^3 + 15293*x^4 + 794433*x^5 + 45958617*x^6 + ... appears to have integral coefficients. Cf. A000897 and A001451. - Peter Bala, Dec 30 2019
Comments