OFFSET
1,2
COMMENTS
The triangle is created by the matrix product A158405 * A004736, regarding both as infinite lower triangular matrices, rest of the terms filled in with zeros.
Apparently, row n contains the initial terms of row 2n-2 of A177877. - R. J. Mathar, Aug 31 2011
EXAMPLE
First few rows are:
1;
7, 3;
22, 13, 5;
50, 34, 19, 7;
95, 70, 46, 25, 9;
...
MAPLE
A104716 := proc(n, k) (2*k-3+4*n)*(k-1-n)*(k-2-n)/6 ; end proc:
seq(seq(A104716(n, k), k=1..n), n=1..15) ; # R. J. Mathar, Aug 31 2011
CROSSREFS
KEYWORD
AUTHOR
Gary W. Adamson, Mar 20 2005
EXTENSIONS
Closed-form definition by R. J. Mathar, Aug 31 2011
STATUS
approved