A236972 The number of partitions of n into at least 5 parts from which we can form every partition of n into 5 parts by summing elements.
0, 0, 0, 0, 1, 2, 2, 3, 3, 4, 7, 8, 9, 13, 14, 24, 29, 35, 38
Offset: 1
Examples
The valid partitions of 11 are all those which contain only 1's, 2's and 3's, with no more than one 3 and no more than three 2's or 3's. This is because every partition of 11 into 5 parts contains at least one element 3 or more, and at least 3 elements 2 or more. There are 7 such partitions, therefore a(11) = 7.
Comments