login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A104727
Triangle T(n,k) = (k-1-n)*(k-2-n)*(k^2+k+2*k*n+3*n^2+5*n)/24 read by rows, 1<=k<=n.
1
1, 7, 3, 25, 15, 6, 65, 45, 26, 10, 140, 105, 71, 40, 15, 266, 210, 155, 103, 57, 21, 462, 378, 295, 215, 141, 77, 28, 750, 630, 511, 395, 285, 185, 100, 36, 1155, 990, 826, 665, 510, 365, 235, 126, 45, 1705, 1485, 1266, 1050, 840, 640, 455, 291, 155, 55, 2431, 2145, 1860, 1578, 1302, 1036, 785, 555, 353, 187, 66, 3367, 3003
OFFSET
1,2
COMMENTS
The triangle is created by multiplying the lower triangular matrix A(n,k) = A000217(k) (1<=k<=n) by the lower triangular matrix B(n,k) = n-k+1 (1<=k<=n): T(n,k) = sum_{j=k..n} A(n,j)*B(j,k).
The commuted product B * A generates triangle A098358.
FORMULA
T(n,1) = A001296(n). - R. J. Mathar, Oct 29 2011
EXAMPLE
First few rows of the triangle are:
1;
7, 3;
25, 15, 6;
665, 45, 26, 10;
140, 105, 71, 40, 15;
266, 210, 155, 103, 57, 21;
...
CROSSREFS
Cf. A098358, A104727, A024166 (row sums).
Sequence in context: A213833 A282806 A283378 * A213561 A368350 A253892
KEYWORD
nonn,easy,tabl
AUTHOR
Gary W. Adamson, Mar 20 2005
STATUS
approved