OFFSET
0,4
COMMENTS
This sequence is similar to A007081 but imposes the restriction that the graphs contain no isolated vertices.
Each graph can be considered to represent a generalized rock-paper-scissors game for which a uniformly random strategy is optimal and no draw can be forced.
LINKS
Wikipedia, Rock paper scissors
FORMULA
a(n) = Sum_{k=0..n} (-1)^(n-k) * binomial(n,k) * A007081(k). - Max Alekseyev, Oct 25 2025
EXAMPLE
For n=3, the only solutions are given by the directed cycles (1,2,3) and (1,3,2). Similarly, also n=4 only has directed cycles as solutions.
An example of a solution for n=5 is
1 -> {5}
2 -> {5}
3 -> {4}
4 -> {1,2}
5 -> {3,4}
Disconnected solutions exist only for n >= 6.
CROSSREFS
KEYWORD
nonn
AUTHOR
Bert Dobbelaere, Mar 18 2025
EXTENSIONS
a(0) prepended and a(9)-a(15) added by Max Alekseyev, Oct 25 2025
STATUS
approved
