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 A176484 #5 Mar 30 2012 17:34:40 %S A176484 1,-1,1,1,-2,1,-1,2,-3,1,1,-2,3,-4,1,-1,2,-3,4,-5,1,1,-2,3,-4,5,-6,1, %T A176484 -1,2,-3,4,-5,6,-7,1,1,-2,3,-4,5,-6,7,-8,1,-1,2,-3,4,-5,6,-7,8,-9,1,1, %U A176484 -2,3,-4,5,-6,7,-8,9,-10,1 %N A176484 Triangle t(n,m) read by rows: t(n,n)= 1, t(n,m) = (-1)^(n+m)*(m+1), 0<=m<n. %C A176484 Row sums are 1, 0, 0, -1, -1, -2, -2, -3, -3, -4, -4,.. %C A176484 Obtained from A144328 by deleting the first column, adding a diagonal of +1's, and multiplication with (-1)^(n-m). %F A176484 t(n,m) = [x^m] (x^n - sum_{j=1..n} (-1)^(j+(n mod 2)) *j*x^(j-1) ) . %e A176484 1; %e A176484 -1, 1; %e A176484 1, -2, 1; %e A176484 -1, 2, -3, 1; %e A176484 1, -2, 3, -4, 1; %e A176484 -1, 2, -3, 4, -5, 1; %e A176484 1, -2, 3, -4, 5, -6, 1; %e A176484 -1, 2, -3, 4, -5, 6, -7, 1; %e A176484 1, -2, 3, -4, 5, -6, 7, -8, 1; %e A176484 -1, 2, -3, 4, -5, 6, -7, 8, -9, 1; %e A176484 1, -2, 3, -4, 5, -6, 7, -8, 9, -10, 1; %t A176484 p[x, 0] = 1; %t A176484 p[x_, n_] := p[x, n] = x^n - Sum[(-1)^(i + Mod[n, 2])*i*x^(i - 1), {i, 1, n}]; %t A176484 Table[CoefficientList[p[x, n], x], {n, 0, 10}]; %t A176484 Flatten[%] %K A176484 sign,tabl,easy %O A176484 0,5 %A A176484 _Roger L. Bagula_, Apr 18 2010