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 A244103 #8 Feb 10 2015 08:45:12 %S A244103 1,0,0,0,0,0,132,429,1001,2002,3640,6188,97512,569772,3625998, %T A244103 14847987,62772941,211719508,877100400,3621910050,21265454080, %U A244103 120016339560,727205489010,3972645105975,21545198606739,109895587819830,577299928495856,3037242685942432 %N A244103 Number of ballot sequences of length n having 6 largest parts. %C A244103 Also number of standard Young tableaux with last row of length 6. %H A244103 Alois P. Heinz, <a href="/A244103/b244103.txt">Table of n, a(n) for n = 6..100</a> %t A244103 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, 6]; Table[a[n], {n, 6, 30}] (* _Jean-François Alcover_, Feb 10 2015, after A238123 *) %Y A244103 Column k=6 of A238123. %K A244103 nonn %O A244103 6,7 %A A244103 _Joerg Arndt_ and _Alois P. Heinz_, Jun 20 2014