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”).

A321975
6-dimensional Catalan numbers.
5
1, 1, 132, 87516, 140229804, 396499770810, 1671643033734960, 9490348077234178440, 67867669180627125604080, 583692803893929928888544400, 5838544419011620940996212276800, 66244124978105851196543024492572800, 836288764382254532915188713779640302400, 11570895443447601081407359451642915869302000
OFFSET
0,3
COMMENTS
Number of n X 6 Young tableaux.
LINKS
FORMULA
a(n) = 0!*1!*...*5! * (6*n)! / ( n!*(n+1)!*...*(n+5)! ).
a(n) ~ 5 * 2^(6*n + 6) * 3^(6*n + 7/2) / (Pi^(5/2) * n^(35/2)). - Vaclav Kotesovec, Nov 23 2018
MAPLE
a:= n-> (6*n)! * mul(i!/(6+i)!, i=0..n-1):
seq(a(n), n=0..14); # Alois P. Heinz, Nov 25 2018
MATHEMATICA
Table[34560 (6 n)! / (n! (n + 1)! (n + 2)! (n + 3)! (n + 4)! (n + 5)!), {n, 0, 60}] (* Vincenzo Librandi, Nov 24 2018 *)
PROG
(PARI) {a(n) = 34560*(6*n)!/(n!*(n+1)!*(n+2)!*(n+3)!*(n+4)!*(n+5)!)}
(Magma) [34560*Factorial(6*n)/(Factorial(n)*Factorial(n + 1)*Factorial(n + 2)*Factorial(n + 3)*Factorial(n + 4)*Factorial(n + 5)): n in [0..15]]; // Vincenzo Librandi, Nov 24 2018
(GAP) List([0..15], n->34560*Factorial(6*n)/Product([0..5], k->Factorial(n+k))); # Muniru A Asiru, Nov 25 2018
CROSSREFS
Row 6 of A060854.
Sequence in context: A267951 A268098 A289294 * A289568 A368024 A114534
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Nov 23 2018
STATUS
approved