A270861 Irregular triangle read by rows: numerators of the coefficients of polynomials J(2n-1,z) = Sum_(k=1,2, .. n) ((n+1)^2 - k + (n+1-k)*z^n)*z^(k-1)/k.
3, 1, 8, 7, 2, 1, 15, 7, 13, 3, 1, 1, 24, 23, 22, 21, 4, 3, 2, 1, 35, 17, 11, 8, 31, 5, 2, 1, 1, 1, 48, 47, 46, 45, 44, 43, 6, 5, 4, 3, 2, 1, 63, 31, 61, 15, 59, 29, 57, 7, 3, 5, 1, 3, 1, 1, 80, 79, 26, 77, 76, 25, 74, 73, 8, 7, 2, 5, 4, 1, 2, 1
Offset: 1
Examples
Irregular triangle: 3, 1, 8, 7, 2, 1, 15, 7, 13, 3, 1, 1, 24, 23, 22, 21, 4, 3, 2, 1, 35, 17, 11, 8, 31, 5, 2, 1, 1, 1 48, 47, 46, 45, 44, 43, 6, 5, 4, 3, 2, 1 etc. Second half part by row: A112543.
Links
- Jean-François Alcover, Roots of J(2n-1,z) lie close to two concentric circles (example)
Programs
-
Mathematica
row[n_] := CoefficientList[Sum[(((n + 1)^2 - k + (n + 1 - k)*z^n))*z^(k - 1)/k, {k, n}], z]; Table[row[n] // Numerator, {n, 1, 9}] // Flatten (* Jean-François Alcover, Apr 07 2016 *)
Comments