OFFSET
0,9
COMMENTS
LINKS
Eric Weisstein's World of Mathematics, Graphical partition.
EXAMPLE
The a(7) = 1 through a(12) = 12 partitions:
211111 2222 411111 222211 222221 3333
221111 21111111 331111 611111 222222
311111 511111 22211111 441111
11111111 22111111 32111111 711111
31111111 41111111 22221111
1111111111 2111111111 32211111
33111111
42111111
51111111
2211111111
3111111111
111111111111
For example, the partition y = (3,2,2,1,1,1,1,1) can be partitioned into pairs in just three ways:
{{1,1},{1,1},{1,2},{2,3}}
{{1,1},{1,1},{1,3},{2,2}}
{{1,1},{1,2},{1,2},{1,3}}
None of these is strict, so y is counted under a(12).
MATHEMATICA
smcs[n_]:=If[n<=1, {{}}, Join@@Table[Map[Prepend[#, d]&, Select[smcs[n/d], Min@@#>d&]], {d, Select[Rest[Divisors[n]], PrimeOmega[#]==2&]}]];
Table[Length[Select[IntegerPartitions[n], EvenQ[Length[#]]&&smcs[Times@@Prime/@#]=={}&]], {n, 0, 10}]
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Gus Wiseman, Dec 10 2020
STATUS
approved