A273629 a(n) = (9*n)!/((7*n)!*n!^2).
1, 72, 18360, 5920200, 2118223800, 803927196072, 316938365223480, 128313095514575400, 52976845635264939960, 22204947580777261872000, 9418997650746914743158360, 4034374193416822645489549632, 1741969558937890710303111545400
Offset: 0
Programs
-
Magma
[Factorial(9*n)/(Factorial(7*n)*Factorial(n)^2): n in [0..40]]; // Vincenzo Librandi, Jul 17 2016
-
Maple
seq((9*n)!/((7*n)!*n!^2), n = 0..20);
-
Mathematica
Table[Factorial[9 n] / (Factorial[7 n] Factorial[n]^2), {n, 0, 20}] (* Vincenzo Librandi, Jul 17 2016 *)
Formula
a(n) = (9*n)!/((7*n)!*n!^2) = binomial(9*n,2*n)* binomial(2*n,n).
a(n) = [x^n](1 + x)^(8*n) * [x^n] (1 + x)^(9*n).
It appears that a(n) = [x^n] F(x)^(72*n), where F(x) = 1 + x + 56*x^2 + 7700*x^3 + 1422008*x^4 + 307144278*x^5 + 73118586828*x^6 + ... has all integer coefficients. Cf. A273628 and A008979.
Recurrence: 7*n^2*(7*n - 1)*(7*n - 2)*(7*n - 3)*(7*n - 4)*(7*n - 5)*(7*n - 6)*a(n) = 9*(9*n - 1)*(9*n - 2)*(9*n - 3)*(9*n - 4)*(9*n - 5)*(9*n - 6)*(9*n - 7)*(9*n - 8)*a(n-1).
a(n) ~ 3^(18*n+1)*7^(-7*n-1/2)/(2*Pi*n). - Ilya Gutkovskiy, Jul 15 2016
a(n) = Sum_{k = 0..n} (-1)^(n+k) * binomial(n, k) * A108625(8*n, k) (verified using the MulZeil procedure in Doron Zeilberger's MultiZeilberger package). - Peter Bala, Oct 15 2024
Comments