OFFSET
0,7
COMMENTS
The vertex-connectivity of a graph is the minimum number of vertices that must be removed (along with any incident edges) to obtain a non-connected graph or singleton. Except for complete graphs, this is the same as cut-connectivity (A327125).
LINKS
EXAMPLE
Triangle begins:
1
1 0
1 1 0
4 3 1 0
26 28 9 1 0
296 490 212 25 1 0
MATHEMATICA
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]]]]]]]]];
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]}]];
Table[Length[Select[Subsets[Subsets[Range[n], {2}]], vertConnSys[Range[n], #]==k&]], {n, 0, 5}, {k, 0, n}]
CROSSREFS
KEYWORD
AUTHOR
Gus Wiseman, Sep 01 2019
EXTENSIONS
a(21)-a(35) from Robert Price, May 14 2021
STATUS
approved