A140287 Table T(n,k) = -2*T(n-1,k)+T(n-1,k+1) = T(n,k-4), 0<=n.
0, 0, 1, -1, 0, 1, -3, 2, 1, -5, 8, -4, -7, 18, -20, 9, 32, -56, 49, -25, -120, 161, -123, 82, 401, -445, 328, -284, -1247, 1218, -940, 969, 3712, -3376, 2849, -3185, -10800, 9601, -8883, 10082, 31201, -28085, 27848, -30964, -90487, 84018, -86660, 93129, 264992, -254696
Offset: 0
Examples
The table starts: 0, 0, 1, -1, 0, 0, 1, -1,... 0, 1, -3, 2, 0, 1, -3, 2,... 1, -5, 8, -4, 1, -5, 8, -4,... -7, 18, -20, 9, -7, 18, -20, 9,... and only the first 4 columns (the non-redundant information) build the sequence.
Formula
Extensions
Edited and extended by R. J. Mathar, Jul 22 2008
Comments