A338914 Number of integer partitions of n of even length whose greatest multiplicity is at most half their length.
1, 0, 0, 1, 1, 2, 3, 4, 6, 9, 11, 16, 23, 29, 39, 53, 69, 90, 118, 150, 195, 249, 315, 398, 506, 629, 789, 982, 1219, 1504, 1860, 2277, 2798, 3413, 4161, 5051, 6137, 7406, 8948, 10765, 12943, 15503, 18571, 22153, 26432, 31432, 37352, 44268, 52444, 61944, 73141
Offset: 0
Keywords
Examples
The a(3) = 1 through a(10) = 11 partitions: (21) (31) (32) (42) (43) (53) (54) (64) (41) (51) (52) (62) (63) (73) (2211) (61) (71) (72) (82) (3211) (3221) (81) (91) (3311) (3321) (3322) (4211) (4221) (4321) (4311) (4411) (5211) (5221) (222111) (5311) (6211) (322111)
Links
- Eric Weisstein's World of Mathematics, Graphical partition.
Crossrefs
A096373 counts the complement in even-length partitions.
A320911 gives the Heinz numbers of these partitions.
A339560 is the strict case.
A339562 counts factorizations of the same type.
A002100 counts partitions into squarefree semiprimes.
A320656 counts factorizations into squarefree semiprimes.
The following count partitions of even length and give their Heinz numbers:
Programs
-
Mathematica
Table[Length[Select[IntegerPartitions[n],EvenQ[Length[#]]&&Max@@Length/@Split[#]<=Length[#]/2&]],{n,0,30}]
Comments