OFFSET
0,2
COMMENTS
Row sums = 3^n: (1, 3, 9, 27, 81,...)
FORMULA
Triangle read by rows, iterates of X * [1,0,0,0,...]; where X = an infinite bidiagonal matrix with [2, -1, 2, -1, 2,...] in the main diagonal, [1, 1, 1,...] in the subdiagonal and rest zeros.
EXAMPLE
First few rows of the triangle are:
1;
2, 1;
4, 3, 2;
8, 7, 10, 2;
16, 15, 34, 12, 4;
32, 31, 98, 46, 32, 4;
64, 63, 258, 144, 156, 36, 8;
128, 126, 642, 402, 600, 192, 88, 8;
...
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Gary W. Adamson, May 10 2008
STATUS
approved