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!)
A326277 Number of crossing normal multiset partitions of weight n. 1
0, 0, 0, 0, 1, 22, 314, 3711, 39947 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,6
COMMENTS
A multiset partition is normal if it covers an initial interval of positive integers.
A multiset partition is crossing if it has two blocks of the form {...x...y...}, {...z...t...} where x < z < y < t or z < x < t < y.
LINKS
EXAMPLE
The a(5) = 22 crossing normal multiset partitions:
{{1,3},{1,2,4}} {{1},{1,3},{2,4}}
{{1,3},{2,2,4}} {{1},{2,4},{3,5}}
{{1,3},{2,3,4}} {{2},{1,3},{2,4}}
{{1,3},{2,4,4}} {{2},{1,4},{3,5}}
{{1,3},{2,4,5}} {{3},{1,3},{2,4}}
{{1,4},{2,3,5}} {{3},{1,4},{2,5}}
{{2,4},{1,1,3}} {{4},{1,3},{2,4}}
{{2,4},{1,2,3}} {{4},{1,3},{2,5}}
{{2,4},{1,3,3}} {{5},{1,3},{2,4}}
{{2,4},{1,3,4}}
{{2,4},{1,3,5}}
{{2,5},{1,3,4}}
{{3,5},{1,2,4}}
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]];
croXQ[stn_]:=MatchQ[stn, {___, {___, x_, ___, y_, ___}, ___, {___, z_, ___, t_, ___}, ___}/; x<z<y<t||z<x<t<y];
Table[Length[Select[Join@@mps/@allnorm[n], croXQ]], {n, 0, 6}]
CROSSREFS
Crossing simple graphs are A326210.
Normal multiset partitions are A255906.
Non-crossing normal multiset partitions are A324171.
MM-numbers of crossing multiset partitions are A324170.
Sequence in context: A025992 A028034 A028231 * A025988 A267132 A023949
KEYWORD
nonn,more
AUTHOR
Gus Wiseman, Jun 22 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 18 20:10 EDT 2024. Contains 371781 sequences. (Running on oeis4.)