OFFSET
1,2
COMMENTS
A multiset is normal if it spans an initial interval of positive integers.
EXAMPLE
The a(2) = 6 multiset partitions of multiset partitions:
{{{1,1}}}
{{{1,2}}}
{{{1},{1}}}
{{{1},{2}}}
{{{1}},{{1}}}
{{{1}},{{2}}}
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]]]];
allnorm[n_]:=If[n<=0, {{}}, Function[s, Array[Count[s, y_/; y<=#]+1&, n]]/@Subsets[Range[n-1]+1]];
Table[Sum[Length[mps[m]], {m, Join@@mps/@allnorm[n]}], {n, 6}]
PROG
(PARI) \\ See links in A339645 for combinatorial species functions.
seq(n)={my(A=symGroupSeries(n)); NormalLabelingsSeq(sExp(sExp(A))-1)} \\ Andrew Howroyd, Jan 01 2021
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Aug 29 2018
EXTENSIONS
Terms a(8) and beyond from Andrew Howroyd, Jan 01 2021
STATUS
approved