OFFSET
0,9
COMMENTS
The Heinz numbers of these partitions are the odd terms of A382912.
Also the number of integer partitions of n with no ones whose normal multiset (in which i appears y_i times) is not a Look-and-Say partition.
EXAMPLE
For y = (3,3) we can choose disjoint strict partitions ((2,1),(3)), so (3,3) is not counted under a(6).
The a(4) = 1 through a(12) = 10 partitions:
(22) . (222) (322) (332) (333) (622) (443) (444)
(422) (522) (3322) (722) (822)
(2222) (3222) (4222) (3332) (3333)
(22222) (4322) (4332)
(5222) (4422)
(32222) (5322)
(6222)
(33222)
(42222)
(222222)
MATHEMATICA
pof[y_]:=Select[Join@@@Tuples[IntegerPartitions/@y], UnsameQ@@#&];
Table[Length[Select[IntegerPartitions[n], FreeQ[#, 1]&&pof[#]=={}&]], {n, 0, 15}]
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Gus Wiseman, May 07 2025
STATUS
approved
