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 A193597 #5 Mar 30 2012 18:57:38 %S A193597 1,1,1,1,2,2,1,4,6,5,1,6,17,21,16,1,9,34,78,86,61,1,12,69,201,397,401, %T A193597 269,1,16,116,522,1282,2250,2113,1350,1,20,194,1074,4099,8900,14187, %U A193597 12509,7650,1,25,292,2172,10078,34044,67316,99102,82713,48634,1 %N A193597 Augmentation of the triangle A193596. See Comments. %C A193597 For an introduction to the unary operation "augmentation" as applied to triangular arrays or sequences of polynomials, see A193091. %e A193597 First 5 rows of A193596: %e A193597 1 %e A193597 1...1 %e A193597 1...1...1 %e A193597 1...2...2...1 %e A193597 1...2...3...2...1 %t A193597 p[n_, k_] := Ceiling[Binomial[n, k]/2] %t A193597 Table[p[n, k], {n, 0, 10}, {k, 0, n}] %t A193597 Flatten[%] (* A193596 *) %t A193597 m[n_] := Table[If[i <= j, p[n + 1 - i, j - i], 0], {i, n}, {j, n + 1}] %t A193597 TableForm[m[4]] %t A193597 w[0, 0] = 1; w[1, 0] = p[1, 0]; w[1, 1] = p[1, 1]; %t A193597 v[0] = w[0, 0]; v[1] = {w[1, 0], w[1, 1]}; %t A193597 v[n_] := v[n - 1].m[n] %t A193597 TableForm[Table[v[n], {n, 0, 10}]] (* A193597 *) %t A193597 Flatten[Table[v[n], {n, 0, 10}]] %Y A193597 Cf. A193596, A193091. %K A193597 nonn,tabl %O A193597 0,5 %A A193597 _Clark Kimberling_, Jul 31 2011