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 A193630 #7 Mar 30 2012 18:57:38 %S A193630 1,1,2,1,5,7,1,9,28,33,1,14,74,181,191,1,20,159,637,1333,1297,1,27, %T A193630 300,1767,5906,11029,10063,1,35,517,4190,20256,59324,101351,87669,1, %U A193630 44,833,8873,58339,244125,645146,1024949,847015,1,54,1274,17241,147680 %N A193630 Augmentation of the triangle A074909. See Comments. %C A193630 For an introduction to the unary operation "augmentation" as applied to triangular arrays or sequences of polynomials, see A193091. %C A193630 Regarding A193630, writing the general term as w(n,k), %C A193630 w(n,n): A104981 %C A193630 w(n,n-1): A156629 %e A193630 First five rows of A193607: %e A193630 1 %e A193630 1...2 %e A193630 1...5....7 %e A193630 1...9....28...33 %e A193630 1...14...74...181...191 %t A193630 p[n_, k_] := Binomial[n + 1, k]; %t A193630 Table[p[n, k], {n, 0, 7}, {k, 0, n}] (* A074909 *) %t A193630 m[n_] := Table[If[i <= j, p[n + 1 - i, j - i], 0], {i, n}, {j, n + 1}] %t A193630 TableForm[m[4]] %t A193630 w[0, 0] = 1; w[1, 0] = p[1, 0]; w[1, 1] = p[1, 1]; %t A193630 v[0] = w[0, 0]; v[1] = {w[1, 0], w[1, 1]}; %t A193630 v[n_] := v[n - 1].m[n] %t A193630 TableForm[Table[v[n], {n, 0, 6}]] (* A193630 *) %t A193630 Flatten[Table[v[n], {n, 0, 8}]] %Y A193630 Cf. A193091, A074909. %K A193630 nonn,tabl %O A193630 0,3 %A A193630 _Clark Kimberling_, Aug 01 2011