OFFSET
0,5
COMMENTS
Without signs the triangle of elementary symmetric functions of the terms binomial(n,j), j=0..n.
FORMULA
EXAMPLE
The triangle begins:
1;
1, -1;
1, -2, 1;
1, -4, 5, -2;
1, -8, 22, -24, 9;
1, -16, 93, -238, 256, -96;
1, -32, 386, -2180, 5825, -6500, 2500;
...
Row 4: x^4 - 8*x^3 + 22*x^2 - 24*x + 9 = (x-1)*(x-4)*(x-6)*(x-4)*(x-1).
PROG
(PARI) T(n, k) = polcoeff(prod(m=0, n, (x-binomial(n-1, m))), n-k+1);
CROSSREFS
KEYWORD
sign,tabl
AUTHOR
Thomas Scheuerle, Jul 11 2022
STATUS
approved