A066855 Triangle T(n,k) of numbers of representations of n as a sum of k products of positive integers, k=1..n. 1 is not allowed as a factor, unless it is the only factor.Representations which differ only in the order of terms or factors are considered equivalent.
1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 1, 3, 2, 1, 1, 2, 4, 4, 2, 1, 1, 1, 5, 5, 4, 2, 1, 1, 3, 7, 8, 6, 4, 2, 1, 1, 2, 8, 11, 9, 6, 4, 2, 1, 1, 2, 11, 16, 14, 10, 6, 4, 2, 1, 1, 1, 11, 20, 20, 15, 10, 6, 4, 2, 1, 1, 4, 15, 28, 29, 23, 16, 10, 6, 4, 2, 1, 1, 1, 16, 33, 39, 33, 24, 16, 10, 6, 4, 2, 1, 1, 2, 19
Offset: 1
Examples
[1], [1, 1], [1, 1, 1], [2, 2, 1, 1], [1, 3, 2, 1, 1], ... . For n=5, 5 = 4+1 = 2*2+1 = 3+2 = 3+1+1 = 2+2+1 = 2+1+1+1 = 1+1+1+1+1, giving the batch [1, 3, 2, 1, 1].
Comments