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 A193998 #5 Mar 30 2012 18:57:39 %S A193998 1,3,2,6,8,3,11,23,18,5,19,55,66,37,8,32,120,196,167,73,13,53,246,511, %T A193998 587,388,139,21,87,484,1225,1777,1578,853,259,34,142,924,2765,4857, %U A193998 5428,3933,1799,474,55,231,1725,5969,12333,16642,15147,9275,3678 %N A193998 Mirror of the triangle A193997. %C A193998 A193998 is obtained by reversing the rows of the triangle A193997. %F A193998 Write w(n,k) for the triangle at A193997. The triangle at A193998 is then given by w(n,n-k). %e A193998 First six rows: %e A193998 1 %e A193998 3....2 %e A193998 6....8.....3 %e A193998 11...23....18....5 %e A193998 19...55....66....37....8 %e A193998 32...120...196...167...73...13 %t A193998 z = 11; %t A193998 p[n_, x_] := Sum[Fibonacci[k + 1]*x^(n - k), {k, 0, n}]; %t A193998 q[n_, x_] := (x + 1)^n; %t A193998 p1[n_, k_] := Coefficient[p[n, x], x^k]; %t A193998 p1[n_, 0] := p[n, x] /. x -> 0; %t A193998 d[n_, x_] := Sum[p1[n, k]*q[n - 1 - k, x], {k, 0, n - 1}] %t A193998 h[n_] := CoefficientList[d[n, x], {x}] %t A193998 TableForm[Table[Reverse[h[n]], {n, 0, z}]] %t A193998 Flatten[Table[Reverse[h[n]], {n, -1, z}]] (* A193997 *) %t A193998 TableForm[Table[h[n], {n, 0, z}]] %t A193998 Flatten[Table[h[n], {n, -1, z}]] (* A193998 *) %Y A193998 Cf. A193997. %K A193998 nonn,tabl %O A193998 0,2 %A A193998 _Clark Kimberling_, Aug 11 2011