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!)
A326330 Number of simple graphs with vertices {1..n} whose nesting edges are connected. 8

%I #8 Jun 28 2019 21:14:03

%S 1,1,2,4,8,30,654

%N Number of simple graphs with vertices {1..n} whose nesting edges are connected.

%C Two edges {a,b}, {c,d} are nesting if a < c < d < b or c < a < b < d. A graph has its nesting edges connected if the graph whose vertices are the edges and whose edges are nesting pairs of edges is connected.

%H Gus Wiseman, <a href="/A326330/a326330.png">The a(5) = 30 nesting-connected simple graphs</a>.

%t nesXQ[stn_]:=MatchQ[stn,{___,{x_,y_},___,{z_,t_},___}/;x<z<t<y||z<x<y<t];

%t nestcmpts[stn_]:=csm[Union[List/@stn,Select[Subsets[stn,{2}],nesXQ]]];

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

%t Table[Length[Select[Subsets[Subsets[Range[n],{2}]],Length[nestcmpts[#]]<=1&]],{n,0,5}]

%Y The covering case is the inverse binomial transform A326331.

%Y Graphs whose crossing edges are connected are A324328.

%Y Cf. A006125, A007297, A054726, A099947, A117662, A136653, A324328.

%Y Cf. A326210, A326293, A326335, A326336, A326337, A326338, A326339.

%K nonn,more

%O 0,3

%A _Gus Wiseman_, Jun 27 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 April 25 11:23 EDT 2024. Contains 371967 sequences. (Running on oeis4.)