OFFSET
1,3
COMMENTS
Sum of row n gives A049611(n).
Triangle is P*A, where P is the Pascal triangle written as a lower triangular matrix and C is the diagonal matrix of the triangular numbers 1, 3, 6, 10, ....
EXAMPLE
First few rows of the triangle:
1;
1, 3;
1, 6, 6;
1, 9, 18, 10;
1, 12, 36, 40, 15;
1, 15, 60, 100, 75, 21;
...
Sum of row 3 = 38 = (1 + 9 + 18 + 10) = A049611(3).
MAPLE
T:=(n, k)->k*(k+1)*binomial(n-1, k-1)/2: for n from 1 to 12 do seq(T(n, k), k=1..n) od; # yields sequence in triangular form
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Gary W. Adamson, Nov 10 2006
EXTENSIONS
Edited by N. J. A. Sloane, Nov 24 2006
STATUS
approved