OFFSET
0,2
COMMENTS
Binomial transform of the bidiagonal matrix with (1,2,3...) in the main diagonal and (1,2,1,2,1,2...) in the subdiagonal. Sum of terms in row n = (n+5)*2^(n-1)-2 for n>=1.
EXAMPLE
First few rows of the triangle are:
1;
2, 2;
3, 6, 3;
4, 12, 10, 4;
5, 20, 22, 18, 5;
6, 30, 40, 50, 26, 6;
7, 42, 65, 110, 81, 38, 7;
...
MAPLE
T:=(n, k)->(k+1)*binomial(n, k)+(3-(-1)^k)*binomial(n, k+1)/2: for n from 0 to 11 do seq(T(n, k), k=0..n) od; # yields sequence in triangular form
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Gary W. Adamson, Nov 20 2006
EXTENSIONS
Edited by N. J. A. Sloane, Nov 29 2006
STATUS
approved