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!)
A327806 Triangle read by rows where T(n,k) is the number of antichains of sets with n vertices and vertex-connectivity >= k. 2

%I #4 Sep 26 2019 21:15:00

%S 1,2,0,5,1,0,19,5,2,0,167,84,44,17,0

%N Triangle read by rows where T(n,k) is the number of antichains of sets with n vertices and vertex-connectivity >= k.

%C An antichain is a set of nonempty sets, none of which is a subset of any other.

%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 Triangle begins:

%e 1

%e 2 0

%e 5 1 0

%e 19 5 2 0

%e 167 84 44 17 0

%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],#]>=k&]],{n,0,4},{k,0,n}]

%Y Except for the first column, same as the covering case A327350.

%Y Column k = 0 is A014466 (antichains).

%Y Column k = 1 is A048143 (clutters), if we assume A048143(0) = A048143(1) = 0.

%Y Column k = 2 is A275307 (blobs), if we assume A275307(1) = A275307(2) = 0.

%Y The unlabeled version is A327807.

%Y The case for vertex connectivity exactly k is A327351.

%Y Cf. A014466, A293606, A326704, A327057, A327062, A327125, A327358.

%K nonn,more,tabl

%O 0,2

%A _Gus Wiseman_, Sep 26 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 September 12 15:43 EDT 2024. Contains 375853 sequences. (Running on oeis4.)