A226377 Lucas numbers differences triangle T(n,k), k<=n, where column k+1 holds the k-th differences of A000204, read by rows.
1, 3, 2, 4, 1, -1, 7, 3, 2, 3, 11, 4, 1, -1, -4, 18, 7, 3, 2, 3, 7, 29, 11, 4, 1, -1, -4, -11, 47, 18, 7, 3, 2, 3, 7, 18, 76, 29, 11, 4, 1, -1, -4, -11, -29, 123, 47, 18, 7, 3, 2, 3, 7, 18, 47, 199, 76, 29, 11, 4, 1, -1, -4, -1, -29, -76, -199
Offset: 1
Examples
Triangle begins: 1; 3, 2; 4, 1, -1; 7, 3, 2, 3; 11, 4, 1, -1, -4; 18, 7, 3, 2, 3, 7; 29, 11, 4, 1, -1, -4, -11; 47, 18, 7, 3, 2, 3, 7, 18; 76, 29, 11, 4, 1, -1, -4, -11, -29; ...
Formula
T(n,1) = A000204(n) for n>0, T(n,k) = T(n,k-1) - T(n-1,k-1).
Comments