login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A317755 Number of multiset partitions of strongly normal multisets of size n such that the blocks have empty intersection. 22
0, 1, 6, 30, 130, 629, 2930, 15019, 78224, 438626, 2548481 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
A multiset is strongly normal if it spans an initial interval of positive integers with weakly decreasing multiplicities.
LINKS
EXAMPLE
The a(3) = 6 strongly normal multiset partitions with empty intersection:
{{2},{1,1}}
{{1},{2,3}}
{{2},{1,3}}
{{3},{1,2}}
{{1},{1},{2}}
{{1},{2},{3}}
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]]]];
strnorm[n_]:=Flatten[MapIndexed[Table[#2, {#1}]&, #]]&/@IntegerPartitions[n];
Table[Length[Join@@Table[Select[mps[m], Intersection@@#=={}&], {m, strnorm[n]}]], {n, 6}]
CROSSREFS
Sequence in context: A320744 A232061 A247386 * A036068 A162743 A224290
KEYWORD
nonn,more
AUTHOR
Gus Wiseman, Aug 06 2018
EXTENSIONS
a(10)-a(11) from Robert Price, May 08 2021
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified July 20 09:46 EDT 2024. Contains 374445 sequences. (Running on oeis4.)