A360071 Regular tetrangle where T(n,k,i) = number of integer partitions of n of length k with i distinct parts.
1, 1, 1, 0, 1, 0, 1, 1, 0, 0, 1, 1, 1, 0, 1, 0, 1, 0, 0, 0, 1, 0, 2, 0, 2, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 1, 2, 1, 1, 1, 0, 2, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 3, 0, 3, 1, 0, 2, 1, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0
Offset: 1
Examples
Tetrangle begins: 1 1 1 1 1 1 1 1 0 0 1 1 1 0 2 1 2 0 3 1 0 0 0 1 0 0 2 0 1 1 1 0 3 1 1 0 0 0 0 1 0 0 0 2 0 0 0 2 1 0 1 0 0 0 0 0 1 0 0 0 0 2 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 For example, finite triangle n = 5 counts the following partitions: (5) . (41)(32) . (311)(221) . . (2111) . . (11111) . . . .
Crossrefs
Programs
-
Mathematica
Table[Length[Select[IntegerPartitions[n], Length[#]==k&&Length[Union[#]]==i&]],{n,1,9},{k,1,n},{i,1,k}]
Comments