OFFSET
0,2
COMMENTS
Row sums = A117591: (1, 3, 5, 10, 19, 37, 72, ...).
EXAMPLE
First few rows of the triangle are:
1;
2, 1;
1, 3, 1;
2, 2, 5, 1;
1, 5, 6, 6, 1;
2, 3, 14, 9, 8, 1;
1, 7, 14, 24, 16, 9, 1;
...
MATHEMATICA
Table[Binomial[n, k] + Binomial[n - Floor[(k+1)/2], Floor[k/2]] - If[EvenQ[n+k], Binomial[(n+k)/2, k], 0], {n, 0, 11}, {k, 0, n}] // Flatten (* Amiram Eldar, May 31 2025 *)
CROSSREFS
KEYWORD
AUTHOR
Gary W. Adamson, Jul 04 2007
EXTENSIONS
The old definition of A131376 did not match its data, as Michel Marcus pointed out. The definition has been corrected here, keeping the data. The old definition with corrected data is now A309213. - N. J. A. Sloane, Aug 09 2019
More terms from Amiram Eldar, May 31 2025
STATUS
approved
