OFFSET
0,5
COMMENTS
Row sums are 1, 0, 0, -1, -1, -2, -2, -3, -3, -4, -4,..
Obtained from A144328 by deleting the first column, adding a diagonal of +1's, and multiplication with (-1)^(n-m).
FORMULA
t(n,m) = [x^m] (x^n - sum_{j=1..n} (-1)^(j+(n mod 2)) *j*x^(j-1) ) .
EXAMPLE
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;
-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, -2, 3, -4, 5, -6, 7, -8, 9, -10, 1;
MATHEMATICA
p[x, 0] = 1;
p[x_, n_] := p[x, n] = x^n - Sum[(-1)^(i + Mod[n, 2])*i*x^(i - 1), {i, 1, n}];
Table[CoefficientList[p[x, n], x], {n, 0, 10}];
Flatten[%]
CROSSREFS
KEYWORD
AUTHOR
Roger L. Bagula, Apr 18 2010
STATUS
approved