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

A215555
a(n) = binomial(11*n,n)*(9*n+1)/(10*n+1).
2
1, 10, 209, 4928, 122507, 3137706, 81921840, 2167714560, 57928578191, 1559830082888, 42254306265171, 1150225193717600, 31437550449182800, 862165662720962754, 23713320186494219820, 653855026849948319616, 18068367354658442882775, 500254126810079793897130
OFFSET
0,2
COMMENTS
Number of standard Young tableaux of shape [10n,n].
LINKS
Wikipedia, Young tableau
FORMULA
a(n) = C(11*n,n)*(9*n+1)/(10*n+1).
MAPLE
a:= n-> binomial(11*n, n)*(9*n+1)/(10*n+1):
seq(a(n), n=0..20);
MATHEMATICA
Table[Binomial[11n, n] (9n+1)/(10n+1), {n, 0, 20}] (* Harvey P. Dale, Nov 21 2023 *)
CROSSREFS
Column k=10 of A214776.
Sequence in context: A368441 A211107 A335673 * A069863 A160476 A067642
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Aug 15 2012
STATUS
approved