A134513 Triangle read by rows: T(n, k) = binomial(ceiling((n+k)/2), floor((n-k)/2)).
1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 1, 3, 3, 1, 1, 3, 3, 4, 4, 1, 1, 1, 6, 6, 5, 5, 1, 1, 4, 4, 10, 10, 6, 6, 1, 1, 1, 10, 10, 15, 15, 7, 7, 1, 1, 5, 5, 20, 20, 21, 21, 8, 8, 1, 1, 1, 15, 15, 35, 35, 28, 28, 9, 9, 1, 1, 6, 6, 35, 35, 56, 56, 36, 36, 10, 10, 1, 1
Offset: 0
Examples
First few rows of the triangle: 1; 1, 1; 1, 1, 1; 2, 2, 1, 1; 1, 3, 3, 1, 1; 3, 3, 4, 4, 1, 1; 1, 6, 6, 5, 5, 1, 1; 4, 4, 10, 10, 6, 6, 1, 1; 1, 10, 10, 15, 15, 7, 7, 1, 1; ...
Extensions
Better definition, offset changed to 0, and more terms from Jinyuan Wang, Jan 25 2025
Comments