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!)
A326519 Number of normal multiset partitions of weight n where each part has a different sum. 17
1, 1, 3, 11, 51, 259, 1461, 9133 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
A multiset partition is normal if it covers an initial interval of positive integers.
LINKS
EXAMPLE
The a(0) = 1 through a(3) = 11 normal multiset partitions:
{} {{1}} {{1,1}} {{1,1,1}}
{{1,2}} {{1,1,2}}
{{1},{2}} {{1,2,2}}
{{1,2,3}}
{{1},{1,1}}
{{1},{1,2}}
{{1},{2,2}}
{{1},{2,3}}
{{2},{1,2}}
{{2},{1,3}}
{{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]]]];
allnorm[n_]:=If[n<=0, {{}}, Function[s, Array[Count[s, y_/; y<=#]+1&, n]]/@Subsets[Range[n-1]+1]];
Table[Length[Select[Join@@mps/@allnorm[n], UnsameQ@@Total/@#&]], {n, 0, 5}]
CROSSREFS
Sequence in context: A359146 A199212 A113283 * A127784 A112696 A346967
KEYWORD
nonn,more
AUTHOR
Gus Wiseman, Jul 12 2019
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 April 23 12:27 EDT 2024. Contains 371912 sequences. (Running on oeis4.)