A382076 Number of integer partitions of n whose run-sums are not all equal.
0, 0, 0, 1, 1, 5, 6, 13, 15, 27, 37, 54, 64, 99, 130, 172, 220, 295, 372, 488, 615, 788, 997, 1253, 1547, 1955, 2431, 3005, 3706, 4563, 5586, 6840, 8332, 10139, 12305, 14879, 17933, 21635, 26010, 31181, 37314, 44581, 53156, 63259, 75163, 89124, 105553, 124752, 147210
Offset: 0
Keywords
Examples
The partition (3,2,1,1,1) has runs ((3),(2),(1,1,1)) with sums (3,2,3) so is counted under a(8). The a(3) = 1 through a(8) = 15 partitions: (21) (31) (32) (42) (43) (53) (41) (51) (52) (62) (221) (321) (61) (71) (311) (411) (322) (332) (2111) (2211) (331) (431) (21111) (421) (521) (511) (611) (2221) (3221) (3211) (3311) (4111) (4211) (22111) (5111) (31111) (22211) (211111) (32111) (311111) (2111111)
Crossrefs
Programs
-
Mathematica
Table[Length[Select[IntegerPartitions[n],!SameQ@@Total/@Split[#]&]],{n,0,15}]
Extensions
More terms from Bert Dobbelaere, Apr 26 2025
Comments