A325468 Number of integer partitions y of n such that the k-th differences of y are distinct (independently) for all k >= 0.
1, 1, 1, 2, 2, 3, 3, 5, 6, 6, 9, 11, 10, 15, 17, 19, 24, 31, 26, 40, 43, 51, 52, 72, 66, 89, 88, 111, 119, 150, 130, 183, 193, 229, 231, 279, 287, 358, 365, 430, 426, 538, 535, 649, 680, 742, 803, 943, 982, 1136, 1115
Offset: 0
Keywords
Examples
The a(1) = 1 through a(9) = 6 partitions: (1) (2) (3) (4) (5) (6) (7) (8) (9) (21) (31) (32) (42) (43) (53) (54) (41) (51) (52) (62) (63) (61) (71) (72) (421) (431) (81) (521) (621)
Links
Crossrefs
Programs
-
Mathematica
Table[Length[Select[IntegerPartitions[n],And@@Table[UnsameQ@@Differences[#,k],{k,0,Length[#]}]&]],{n,0,30}]
Comments