A304406 Number of partitions of n in which the sequence of the sum of the same summands is nonincreasing.
1, 1, 2, 2, 4, 3, 6, 5, 9, 8, 11, 11, 20, 16, 20, 21, 32, 30, 41, 38, 50, 48, 62, 64, 89, 81, 97, 100, 123, 123, 151, 154, 187, 183, 221, 221, 279, 272, 312, 316, 377, 376, 446, 460, 531, 547, 628, 641, 754, 746, 841, 856, 990, 1007, 1145, 1167, 1325, 1346, 1519, 1567, 1776
Offset: 0
Keywords
Examples
n | | Sequence of the sum of the same summands --+----------------------+----------------------------------------- 1 | 1 | 1 2 | 2 | 2 | 1+1 | 2 3 | 3 | 3 | 1+1+1 | 3 4 | 4 | 4 | 2+2 | 4 | 2+1+1 | 2, 2 | 1+1+1+1 | 4 5 | 5 | 5 | 2+1+1+1 | 3, 2 | 1+1+1+1+1 | 5 6 | 6 | 6 | 3+3 | 6 | 3+1+1+1 | 3, 3 | 2+2+2 | 6 | 2+1+1+1+1 | 4, 2 | 1+1+1+1+1+1 | 6
Crossrefs
Programs
-
Mathematica
Table[Length[Select[IntegerPartitions[n],LessEqual@@Total/@Split[#]&]],{n,0,30}] (* Gus Wiseman, Oct 21 2022 *)
Comments