OFFSET
1,2
COMMENTS
Number of standard Young tableaux of shape (n,n,{1}^n). - Alois P. Heinz, Apr 05 2013
LINKS
Alois P. Heinz, Table of n, a(n) for n = 1..250
FORMULA
a(n) ~ 3^(3*n+1/2) / (8*Pi*n^2). - Vaclav Kotesovec, Sep 06 2014
a(n) = A006480(n) / (4*n + 2) if n>0. - Michael Somos, Oct 25 2014
D-finite with recurrence: n^2*(2*n+1)*a(n) -3*(3*n-1)*(2*n-1)*(3*n-2)*a(n-1)=0. - R. J. Mathar, Apr 27 2020
EXAMPLE
G.f. = x + 9*x^2 + 120*x^3 + 1925*x^4 + 34398*x^5 + 659736*x^6 + ...
MAPLE
with(combinat):
a:= n-> multinomial(3*n, n$3)/(4*n+2):
seq(a(n), n=1..30); # Alois P. Heinz, Apr 05 2013
MATHEMATICA
a[ n_] := If[ n < 1, 0, (3 n)! / (n!^3 (4 n + 2))]; (* Michael Somos, Oct 25 2014 *)
PROG
(PARI) {a(n) = if( n<1, 0, (3*n)! / (n!^3 * (4*n + 2)))}; /* Michael Somos, Oct 25 2014 */
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
Corrected and extended by Alois P. Heinz, Apr 05 2013
STATUS
approved