The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A321185 Number of integer partitions of n that are the vertex-degrees of some strict antichain of sets with no singletons. 0
1, 0, 1, 1, 2, 2, 5, 5, 9, 11, 17, 20 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
COMMENTS
A strict antichain is a finite set of finite nonempty sets, none of which is a subset of any other.
LINKS
EXAMPLE
The a(2) = 1 through a(9) = 11 partitions:
(11) (111) (211) (2111) (222) (2221) (2222) (3222)
(1111) (11111) (2211) (22111) (3221) (22221)
(3111) (31111) (22211) (32211)
(21111) (211111) (32111) (33111)
(111111) (1111111) (41111) (222111)
(221111) (321111)
(311111) (411111)
(2111111) (2211111)
(11111111) (3111111)
(21111111)
(111111111)
The a(8) = 9 integer partitions together with a realizing strict antichain for each (the parts of the partition count the appearances of each vertex in the antichain):
(41111): {{1,2},{1,3},{1,4},{1,5}}
(3221): {{1,2},{1,3},{1,4},{2,3}}
(32111): {{1,3},{1,2,4},{1,2,5}}
(311111): {{1,2},{1,3},{1,4,5,6}}
(2222): {{1,2},{1,3,4},{2,3,4}}
(22211): {{1,2,3,4},{1,2,3,5}}
(221111): {{1,2,3},{1,2,4,5,6}}
(2111111): {{1,2},{1,3,4,5,6,7}}
(11111111): {{1,2,3,4,5,6,7,8}}
MATHEMATICA
submultisetQ[M_, N_]:=Or[Length[M]==0, MatchQ[{Sort[List@@M], Sort[List@@N]}, {{x_, Z___}, {___, x_, W___}}/; submultisetQ[{Z}, {W}]]];
stableQ[u_]:=Apply[And, Outer[#1==#2||!submultisetQ[#1, #2]&&!submultisetQ[#2, #1]&, u, u, 1], {0, 1}];
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]]]];
anti[m_]:=Select[mps[m], And[And@@UnsameQ@@@#, UnsameQ@@#, Min@@Length/@#>1, stableQ[#]]&];
strnorm[n_]:=Flatten[MapIndexed[Table[#2, {#1}]&, #]]&/@IntegerPartitions[n];
Table[Length[Select[strnorm[n], anti[#]!={}&]], {n, 8}]
CROSSREFS
Sequence in context: A368180 A071181 A213675 * A320322 A330106 A214795
KEYWORD
nonn,more
AUTHOR
Gus Wiseman, Oct 29 2018
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 June 3 00:27 EDT 2024. Contains 373054 sequences. (Running on oeis4.)