OFFSET
0,3
LINKS
EXAMPLE
The a(1) = 1 through a(4) = 15 multiset partitions:
{{1}} {{1,1}} {{1,1,1}} {{1,1,1,1}}
{{1,2}} {{1,1,2}} {{1,1,1,2}}
{{1},{1}} {{1,2,3}} {{1,1,2,2}}
{{1},{1,1}} {{1,1,2,3}}
{{1},{1,2}} {{1,2,3,4}}
{{1},{1},{1}} {{1},{1,1,1}}
{{1,1},{1,1}}
{{1},{1,1,2}}
{{1,1},{1,2}}
{{1},{1,2,2}}
{{1},{1,2,3}}
{{1,2},{1,2}}
{{1},{1},{1,1}}
{{1},{1},{1,2}}
{{1},{1},{1},{1}}
MATHEMATICA
sps[{}]:={{}}; sps[set:{i_, ___}]:=Join@@Function[s, Prepend[#, s]&/@sps[Complement[set, s]]]/@Cases[Subsets[set], {i, ___}];
mps[set_]:=Union[Sort[Sort/@(#/.x_Integer:>set[[x]])]&/@sps[Range[Length[set]]]];
normQ[m_]:=Or[m=={}, Union[m]==Range[Max[m]]];
strnorm[n_]:=Flatten[MapIndexed[Table[#2, {#1}]&, #]]&/@IntegerPartitions[n];
Table[Length[Select[Join@@mps/@strnorm[n], And@@normQ/@#&]], {n, 0, 5}]
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Gus Wiseman, Sep 09 2022
STATUS
approved