OFFSET
0,2
COMMENTS
Two edges {a,b}, {c,d} are crossing if a < c < b < d or c < a < d < b.
LINKS
Andrew Howroyd, Table of n, a(n) for n = 0..200
FORMULA
From Andrew Howroyd, Sep 14 2019: (Start)
a(n) = 2^n * A054726(n).
G.f.: 1 + 3*x - 4*x^2 - x*sqrt(1 - 24*x + 16*x^2). (End)
EXAMPLE
The a(0) = 1 through a(2) = 8 non-crossing edge sets with loops:
{} {} {}
{11} {11}
{12}
{22}
{11,12}
{11,22}
{12,22}
{11,12,22}
MATHEMATICA
croXQ[stn_]:=MatchQ[stn, {___, {x_, y_}, ___, {z_, t_}, ___}/; x<z<t<y||z<x<y<t];
Table[Length[Select[Subsets[Select[Tuples[Range[n], 2], OrderedQ]], !croXQ[#]&]], {n, 0, 5}]
PROG
(PARI) seq(n)=Vec(1+3*x-4*x^2 -x*sqrt(1-24*x+16*x^2 + O(x^n))) \\ Andrew Howroyd, Sep 14 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Sep 12 2019
EXTENSIONS
Terms a(6) and beyond from Andrew Howroyd, Sep 14 2019
STATUS
approved