A326237 Number of non-nesting digraphs with vertices {1..n}, where two edges (a,b), (c,d) are nesting if a < c and b > d or a > c and b < d.
1, 2, 12, 104, 1008, 10272, 107712, 1150592
Offset: 0
Examples
The a(2) = 12 non-nesting digraph edge-sets: {} {11} {12} {21} {22} {11,12} {11,21} {11,22} {12,22} {21,22} {11,12,22} {11,21,22}
Crossrefs
Programs
-
Mathematica
Table[Length[Select[Subsets[Tuples[Range[n],2]],OrderedQ[Last/@#]&]],{n,4}]
Comments