OFFSET
0,5
COMMENTS
In the recurrence T(n,k)=T(n-1,k)+T([n/2],k-1): T(n-1,k) represents the partitions where the smallest part is 1 and T([n/2],k-1) those where it is not.
LINKS
H. Bottomley, Illustration of initial terms
FORMULA
T(n, k) = T(n-1, k)+T([n/2], k-1) starting with T(n, 0)=1 and T(0, k)=0 for k>0.
EXAMPLE
Rows start:
1;
1, 1;
1, 2, 1;
1, 3, 2, 0;
1, 4, 4, 1, 0;
1, 5, 6, 2, 0, 0;
...
CROSSREFS
KEYWORD
AUTHOR
Henry Bottomley, Aug 02 2002
STATUS
approved