A130301 Triangle read by rows: A130296 * A007318, as infinite lower triangular matrices.
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, 15, 28, 56, 70, 56, 28, 8, 1, 17, 36, 84, 126, 126, 84, 36, 9, 1, 19, 45, 120, 210, 252, 210, 120, 45, 10, 1, 21, 55, 165, 330, 462, 462, 330, 165, 55, 11, 1
Offset: 1
Examples
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; ...
Programs
-
Maple
A130301 := proc(n, k) add( A051340(n, i)*binomial(i, k), i=k..n); end proc: # R. J. Mathar, Jul 16 2015
Formula
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
Comments