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 A193635 #5 Mar 30 2012 18:57:38 %S A193635 1,1,2,1,5,6,1,8,21,20,1,11,45,84,70,1,14,78,220,330,252,1,17,120,455, %T A193635 1001,1287,924,1,20,171,816,2380,4368,5005,3432,1,23,231,1330,4845, %U A193635 11628,18564,19448,12870,1,26,300,2024,8855,26334,54264,77520,75582 %N A193635 Triangle: T(n,k)=C(3n-k,k), 0<=k<=n. %F A193635 T(n,k)=C(3n-k,k), 0<=k<=n. %e A193635 First 5 rows of A193635: %e A193635 1 %e A193635 1...2 %e A193635 1...7....10 %e A193635 1...15...66....82 %e A193635 1...26...231...811...930 %t A193635 p[n_, k_] := Binomial[3 n - k, k]; %t A193635 Table[p[n, k], {n, 0, 9}, {k, 0, n}] (* A193635 *) %t A193635 Flatten[%] %Y A193635 Cf. A193636. %K A193635 nonn,tabl %O A193635 0,3 %A A193635 _Clark Kimberling_, Aug 01 2011