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

A244107
Number of ballot sequences of length n having 10 largest parts.
2
1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16796, 58786, 149226, 326876, 653752, 1225785, 2187185, 3749460, 6216210, 10015005, 7661738955, 54722507580, 395948080320, 1833749903700, 8617567868184, 32552623293036, 125052931581776, 418634577697116, 1427554615084576
OFFSET
10,11
COMMENTS
Also number of standard Young tableaux with last row of length 10.
LINKS
MATHEMATICA
b[n_, l_List] := b[n, l] = If[n < 1, x^l[[-1]], b[n - 1, Append[l, 1]] + Sum[If[i == 1 || l[[i - 1]] > l[[i]], b[n - 1, ReplacePart[l, i -> l[[i]] + 1]], 0], {i, 1, Length[l]}]]; a[n_] := Coefficient[b[n - 1, {1}], x, 10]; Table[a[n], {n, 10, 30}] (* Jean-François Alcover, Feb 10 2015, after A238123 *)
CROSSREFS
Column k=10 of A238123.
Sequence in context: A053074 A115923 A243836 * A264183 A258497 A258398
KEYWORD
nonn
AUTHOR
Joerg Arndt and Alois P. Heinz, Jun 20 2014
STATUS
approved