1, 1, 1, 3, 2, 1, 13, 7, 3, 1, 71, 33, 13, 4, 1, 461, 191, 71, 21, 5, 1, 3447, 1297, 461, 133, 31, 6, 1, 29093, 10063, 3447, 977, 225, 43, 7, 1, 273343, 87669, 29093, 8135, 1859, 353, 57, 8, 1, 2829325, 847015, 273343, 75609, 17185, 3251, 523, 73, 9, 1
Offset: 0
SHIFT_LEFT(column 0 of T^-1) = -1*(column 0 of T);
SHIFT_LEFT(column 0 of T^1) = 1*(column 2 of T);
SHIFT_LEFT(column 0 of T^2) = 2*(column 3 of T);
where SHIFT_LEFT of column sequence shifts 1 place left.
Triangle T begins:
1;
1, 1;
3, 2, 1;
13, 7, 3, 1;
71, 33, 13, 4, 1;
461, 191, 71, 21, 5, 1;
3447, 1297, 461, 133, 31, 6, 1;
29093, 10063, 3447, 977, 225, 43, 7, 1;
273343, 87669, 29093, 8135, 1859, 353, 57, 8, 1;
2829325, 847015, 273343, 75609, 17185, 3251, 523, 73, 9, 1; ...
Matrix inverse T^-1 is A104984 which begins:
1;
-1, 1;
-1, -2, 1;
-3, -1, -3, 1;
-13, -3, -1, -4, 1;
-71, -13, -3, -1, -5, 1;
-461, -71, -13, -3, -1, -6, 1; ...
Matrix T also satisfies:
[I + SHIFT_LEFT(T)] = [I - SHIFT_DOWN(T)]^-1, which starts:
1;
1, 1;
2, 1, 1;
7, 3, 1, 1;
33, 13, 4, 1, 1;
191, 71, 21, 5, 1, 1; ...
where SHIFT_DOWN(T) shifts columns of T down 1 row,
and SHIFT_LEFT(T) shifts rows of T left 1 column,
with both operations leaving zeros in the diagonal.
Comments