OFFSET
1,2
COMMENTS
T(n,k) is the number of non-descending sequences with length k and last number is less or equal to n. T(n,k) is also the number of integer partitions (of any positive integer) with length k and largest part is less or equal to n. - Zlatko Damijanic, Dec 06 2024
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
EXAMPLE
1;
2, 3;
3, 6, 10;
4, 10, 20, 35;
5, 15, 35, 70, 126;
6, 21, 56, 126, 252, 462;
7, 28, 84, 210, 462, 924, 1716;
MATHEMATICA
Table[Binomial[n+k-1, k], {n, 10}, {k, n}]//Flatten (* Harvey P. Dale, Jul 31 2021 *)
PROG
(PARI) tabl(nn) = {for (n=1, nn, for (k=1, n, print1( binomial(n+k-1, k), ", "); ); print(); ); } \\ Michel Marcus, Jun 12 2013
CROSSREFS
KEYWORD
AUTHOR
Daniel McLaury (daniel.mclaury(AT)gmail.com), Sep 11 2009
STATUS
approved