login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A321978
9-dimensional Catalan numbers.
2
1, 1, 4862, 414315330, 177295473274920, 219738059326729823880, 583692803893929928888544400, 2760171874087743799855959353857200, 20535535214275361308250745082811167425600, 220381378415074546123953914908618547085974856000
OFFSET
0,3
COMMENTS
Number of n X 9 Young tableaux.
LINKS
FORMULA
a(n) = 0!*1!*...*8! * (9*n)! / ( n!*(n+1)!*...*(n+8)! ).
a(n) ~ 16056320000 * 3^(18*n + 10) / (Pi^4 * n^40). - Vaclav Kotesovec, Nov 23 2018
MATHEMATICA
Table[5056584744960000 (9 n)! / (n! (n + 1)! (n + 2)! (n + 3)! (n + 4)! (n + 5)! (n + 6)! (n + 7)! (n + 8)!), {n, 0, 15}] (* Vincenzo Librandi, Nov 24 2018 *)
PROG
(Magma) [5056584744960000*Factorial(9*n)/(Factorial(n)*Factorial(n + 1)*Factorial(n + 2)*Factorial(n + 3)*Factorial(n + 4)*Factorial(n + 5)*Factorial(n + 6)*Factorial(n + 7)*Factorial(n + 8)): n in [0..15]]; // Vincenzo Librandi, Nov 24 2018
(GAP) List([0..10], n->5056584744960000*Factorial(9*n)/Product([0..8], k->Factorial(n+k))); # Muniru A Asiru, Nov 25 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Nov 23 2018
STATUS
approved