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 A193972 #5 Mar 30 2012 18:57:39 %S A193972 2,5,3,9,11,4,14,26,19,5,20,50,55,29,6,27,85,125,99,41,7,35,133,245, %T A193972 259,161,55,8,44,196,434,574,476,244,71,9,54,276,714,1134,1176,804, %U A193972 351,89,10,65,375,1110,2058,2562,2190,1275,485,109,11,77,495,1650 %N A193972 Mirror of the triangle A193971. %C A193972 A193972 is obtained by reversing the rows of the triangle A193971. %F A193972 Write w(n,k) for the triangle at A193971. The triangle at A193972 is then given by w(n,n-k). %e A193972 First six rows: %e A193972 2 %e A193972 5....3 %e A193972 9....11...4 %e A193972 14...26...19....5 %e A193972 20...50...55....29...6 %e A193972 27...85...125...99...41...7 %t A193972 z = 11; %t A193972 p[0, x_] := 1; p[n_, x_] := x*p[n - 1, x] + n + 1; %t A193972 q[n_, x_] := (x + 1)^n %t A193972 p1[n_, k_] := Coefficient[p[n, x], x^k]; %t A193972 p1[n_, 0] := p[n, x] /. x -> 0; %t A193972 d[n_, x_] := Sum[p1[n, k]*q[n - 1 - k, x], {k, 0, n - 1}] %t A193972 h[n_] := CoefficientList[d[n, x], {x}] %t A193972 TableForm[Table[Reverse[h[n]], {n, 0, z}]] %t A193972 Flatten[Table[Reverse[h[n]], {n, -1, z}]] (* A193971 *) %t A193972 TableForm[Table[h[n], {n, 0, z}]] %t A193972 Flatten[Table[h[n], {n, -1, z}]] (* A193972 *) %Y A193972 Cf. A193971. %K A193972 nonn,tabl %O A193972 0,1 %A A193972 _Clark Kimberling_, Aug 10 2011