OFFSET
1,2
COMMENTS
Row sums = A083706: (1, 4, 9, 18, 35, 68, ...).
The lower triangular matrix A130296 is equal to the restriction of the square array A051340 to its lower left triangular part. So this is also equal to (A051340) * A007318, where (A051340) is the lower triangular part of A051340, i.e., A051340[i,j] replaced by zero for j > i: see Mathar's Maple code. - M. F. Hasler, Aug 15 2015
FORMULA
EXAMPLE
First few rows of the triangle:
1;
3, 1;
5, 3, 1;
7, 6, 4, 1;
9, 10, 10, 5, 1;
11, 15, 20, 15, 6, 1;
13, 21, 35, 35, 21, 7, 1;
...
MAPLE
A130301 := proc(n, k)
add( A051340(n, i)*binomial(i, k), i=k..n);
end proc: # R. J. Mathar, Jul 16 2015
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Gary W. Adamson, May 20 2007
EXTENSIONS
Corrected (missing a(15)=1 inserted) by M. F. Hasler, Aug 15 2015
a(26) = 27 corrected and more terms from Georg Fischer, May 29 2023
STATUS
approved