A325391 Number of reversed integer partitions of n whose k-th differences are strictly increasing for all k >= 0.
1, 1, 1, 2, 2, 3, 3, 5, 5, 6, 8, 9, 9, 13, 13, 15, 19, 20, 20, 28, 28, 30, 36, 40, 40, 50, 50, 56, 64, 68, 68, 86, 86, 92, 102, 112, 114, 133, 133, 146, 158, 173, 173, 202, 202, 215, 237, 256, 256, 287, 287, 324, 340, 359, 359, 403, 423, 446, 464, 495, 495
Offset: 0
Keywords
Examples
The a(1) = 1 through a(9) = 6 reversed partitions: (1) (2) (3) (4) (5) (6) (7) (8) (9) (12) (13) (14) (15) (16) (17) (18) (23) (24) (25) (26) (27) (34) (35) (36) (124) (125) (45) (126) The smallest reversed strict partition with strictly increasing differences not counted by this sequence is (1,2,4,7), whose first and second differences are (1,2,3) and (1,1) respectively.
Links
Crossrefs
Programs
-
Mathematica
Table[Length[Select[Reverse/@IntegerPartitions[n],And@@Table[Less@@Differences[#,k],{k,0,Length[#]}]&]],{n,0,30}]
Comments