OFFSET
0,5
COMMENTS
Signed version of A008278.
EXAMPLE
Triangle starts
1,
1, -1,
1, -3, 1,
1, -6, 7, -1,
1, -10, 25, -15, 1,
1, -15, 65, -90, 31, -1,
...
The fourth row corresponds to the expansion
x^4 = 1 * (x + 3)! / x! - 6 * (x + 2)! / x! + 7 * (x + 1)! / x! - 1.
PROG
(Maxima) f1(p, n) := if n = 0 then [p] else [coeff(p, x ^ n), f1(p - expand(product(x + i, i, 1, n) * coeff(p, x^ n)), n - 1)$
f(n) := flatten(f1(x ^ n, n))$
CROSSREFS
KEYWORD
sign,tabl
AUTHOR
Douglas Boffey, Jun 18 2012
STATUS
approved