A202389 Triangle T(n,k), read by rows, given by (1, -2, 1, 0, 0, 0, 0, 0, 0, 0, ...) DELTA (1, 1, -1, 0, 0, 0, 0, 0, 0, 0, ...) where DELTA is the operator defined in A084938.
1, 1, 1, -1, 1, 2, -1, -2, 2, 3, 1, -2, -5, 3, 5, 1, 3, -5, -10, 5, 8, -1, 3, 9, -10, -20, 8, 13, -1, -4, 9, 22, -20, -38, 13, 21, 1, -4, -14, 22, 51, -38, -71, 21, 34, 1, 5, -14, -40, 51, 111, -71, -130, 34, 55
Offset: 0
Examples
Triangle begins : 1 1, 1 -1, 1, 2 -1, -2, 2, 3 1, -2, -5, 3, 5 1, 3, -5, -10, 5, 8 -1, 3, 9, -10, -20, 8, 13
Programs
-
Mathematica
With[{m = 9}, CoefficientList[CoefficientList[Series[(1+x)/(1-y*x+(1-y^2)*x ^2), {x, 0 , m}, {y, 0, m}], x], y]] // Flatten (* Georg Fischer, Feb 17 2020 *)
-
PARI
T(n,k) = if (k<0, 0, if (n
Michel Marcus, Feb 17 2020
Comments