A357878 Number of integer partitions of n whose run-sums are not weakly decreasing.
0, 0, 0, 0, 0, 1, 1, 3, 4, 8, 11, 19, 25, 40, 55, 79, 104, 150, 196, 270, 350, 467, 600, 786, 997, 1293, 1632, 2077, 2597, 3283, 4067, 5088, 6268, 7769, 9517, 11704, 14238, 17405, 21092, 25598, 30861, 37278, 44729, 53742, 64226, 76811, 91448, 108929, 129174
Offset: 0
Keywords
Examples
The a(0) = 0 through a(9) = 8 partitions: . . . . . (2111) (21111) (322) (3221) (3222) (31111) (32111) (32211) (211111) (311111) (42111) (2111111) (321111) (411111) (2211111) (3111111) (21111111)
Links
- Mathematics Stack Exchange, What is a sequence run? (answered 2011-12-01)
Crossrefs
Programs
-
Mathematica
Table[Length[Select[IntegerPartitions[n],!LessEqual@@Total/@Split[Reverse[#]]&]],{n,0,30}]
Comments