A328610 Irregular triangular array read by rows: the rows show the coefficients of the first of two factors of even-degree polynomials described in Comments.
-2, 1, 1, 0, 1, 1, 3, 0, 1, 2, 4, 6, 0, 1, 3, 10, 10, 10, 0, 1, 5, 18, 30, 20, 15, 0, 1, 8, 35, 63, 70, 35, 21, 0, 1, 13, 64, 140, 168, 140, 56, 28, 0, 1, 21, 117, 288, 420, 378, 252, 84, 36, 0, 1, 34, 210, 585, 960, 1050, 756, 420, 120, 45, 0, 1, 55, 374
Offset: 1
Examples
First nine rows: . -2, 1; (coefficients of -2 + x) 1, 0, 1; (coefficients of 1 + x^2) 1, 3, 0, 1; 2, 4, 6, 0, 1; 3, 10, 10, 10, 0, 1; 5, 18, 30, 20, 15, 0, 1; 8, 35, 63, 70, 35, 21, 0, 1; 13, 64, 140, 168, 140, 56, 28, 0, 1; 21, 117, 288, 420, 378, 252, 84, 36, 0, 1;
Links
- Clark Kimberling, Table of n, a(n) for n = 1..1325
Programs
-
Mathematica
g[x_, n_] := Numerator[(-1)^(n + 1) Factor[D[(1 - x)/(1 - x - x^2), {x, n}]]]; f = Table[FactorList[g[x, n]/n!], {n, 1, 60, 2}]; (* polynomials *) r[n_] := Rest[f[[n]]]; Column[Table[First[CoefficientList[r[n][[1]], x]], {n, 1, 16}]] (* A328610 *) Column[Table[-First[CoefficientList[r[n][[2]], x]], {n, 1, 16}]] (* A328611 *)
Comments