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!)
A327356 Number of connected separable antichains of nonempty sets covering n vertices (vertex-connectivity 1). 4

%I #4 Sep 11 2019 20:22:14

%S 0,0,1,3,40,1365

%N Number of connected separable antichains of nonempty sets covering n vertices (vertex-connectivity 1).

%C An antichain is a set of sets, none of which is a subset of any other. It is covering if there are no isolated vertices.

%C The vertex-connectivity of a set-system is the minimum number of vertices that must be removed (along with any resulting empty edges) to obtain a non-connected set-system or singleton. Note that this means a single node has vertex-connectivity 0.

%e Non-isomorphic representatives of the a(4) = 40 set-systems:

%e {{1,2},{1,3,4}}

%e {{1,2},{1,3},{1,4}}

%e {{1,2},{1,3},{2,4}}

%e {{1,2},{1,3},{1,4},{2,3}}

%t csm[s_]:=With[{c=Select[Subsets[Range[Length[s]],{2}],Length[Intersection@@s[[#]]]>0&]},If[c=={},s,csm[Sort[Append[Delete[s,List/@c[[1]]],Union@@s[[c[[1]]]]]]]]];

%t stableSets[u_,Q_]:=If[Length[u]==0,{{}},With[{w=First[u]},Join[stableSets[DeleteCases[u,w],Q],Prepend[#,w]&/@stableSets[DeleteCases[u,r_/;r==w||Q[r,w]||Q[w,r]],Q]]]];

%t vertConnSys[vts_,eds_]:=Min@@Length/@Select[Subsets[vts],Function[del,Length[del]==Length[vts]-1||csm[DeleteCases[DeleteCases[eds,Alternatives@@del,{2}],{}]]!={Complement[vts,del]}]];

%t Table[Length[Select[stableSets[Subsets[Range[n],{1,n}],SubsetQ],vertConnSys[Range[n],#]==1&]],{n,0,4}]

%Y Column k = 1 of A327351.

%Y The graphical case is A327336.

%Y The unlabeled version is A327436.

%Y Cf. A014466, A048143, A307249, A326786, A326950, A327062, A327112, A327114, A327334.

%K nonn,more

%O 0,4

%A _Gus Wiseman_, Sep 11 2019

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 August 23 16:46 EDT 2024. Contains 375396 sequences. (Running on oeis4.)