I asked a question like this a while ago but I don't think I worded it very well so here is a second attempt.
I am trying to find a systematic way of finding all distinct possible ways a digraph can be created with 3 edges. Loops count as an edge. By distinct, I mean that no digraph can be turned into another by flipping, rotating, or re-labeling the vertices.
I am trying to do these for 3,4,...,n number of edges so I am trying to find a more systematic way of doing so. Any advice is appreciated. Thank you for reading.
If you fix $n$ vertices and $k$ edges, you can form $\binom{n^2}{k}$ digraphs (with loops). The complete graph has exactly $n^2$ edges; we have free and independent choice where edges begin and where they end, including beginning and ending with the same vertex. Each such digraph represents an unordered selection of $k$ of these $n^2$ vertices.