A325285 Number of integer partitions of n whose omega-sequence has repeated parts.
0, 0, 0, 1, 2, 5, 6, 13, 17, 26, 36, 54, 66, 98, 125, 164, 214, 285, 354, 468, 585, 745, 945, 1195, 1477, 1864, 2317, 2867, 3544, 4383, 5348, 6589, 8028, 9778, 11885, 14403, 17362, 20992, 25212, 30239, 36158, 43242, 51408, 61240, 72568, 85989, 101607, 120027
Offset: 0
Keywords
Examples
The a(3) = 1 through a(8) = 17 partitions: (21) (31) (32) (42) (43) (53) (211) (41) (51) (52) (62) (221) (321) (61) (71) (311) (411) (322) (332) (2111) (3111) (331) (422) (21111) (421) (431) (511) (521) (2221) (611) (3211) (3221) (4111) (4211) (22111) (5111) (31111) (22211) (211111) (32111) (41111) (221111) (311111) (2111111)
Crossrefs
Programs
-
Mathematica
omseq[ptn_List]:=If[ptn=={},{},Length/@NestWhileList[Sort[Length/@Split[#]]&,ptn,Length[#]>1&]]; Table[Length[Select[IntegerPartitions[n],!UnsameQ@@omseq[#]&]],{n,0,30}]
Comments