This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A244105 #8 Feb 10 2015 08:45:21 %S A244105 1,0,0,0,0,0,0,0,1430,4862,11934,25194,48450,87210,149226,245157, %T A244105 23761001,159952925,1105745355,4877504775,21957739245,79151445945, %U A244105 291770177400,934243294725,4553273607924,25467623215188,210714037216628,1472412825136220 %N A244105 Number of ballot sequences of length n having 8 largest parts. %C A244105 Also number of standard Young tableaux with last row of length 8. %H A244105 Alois P. Heinz, <a href="/A244105/b244105.txt">Table of n, a(n) for n = 8..100</a> %t A244105 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, 8]; Table[a[n], {n, 8, 30}] (* _Jean-François Alcover_, Feb 10 2015, after A238123 *) %Y A244105 Column k=8 of A238123. %K A244105 nonn %O A244105 8,9 %A A244105 _Joerg Arndt_ and _Alois P. Heinz_, Jun 20 2014