A039748 Erroneous version of A051421.
1, 1, 2, 12, 184
Offset: 0
This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
A350794seq(15) \\ See link for program code.
Initially(12) \\ See A057274. - Andrew Howroyd, Jan 11 2022
\\ See PARI link in A350794 for program code. A049531seq(15) \\ Andrew Howroyd, Jan 21 2022
Triangle begins: [1], [0, 1, 1], [0, 0, 2, 4, 4, 1, 1], [0, 0, 0, 4, 16, 34, 46, 38, 27, 13, 5, 1, 1], .... The number of digraphs with a source on 3 unlabeled nodes is 12 = 2+4+4+1+1.
\\ See PARI link in A350794 for program code. { my(A=A057277triang(5)); for(n=1, #A, print(A[n])) } \\ Andrew Howroyd, Jan 21 2022
For n=3, 5 digraph edge-sets: (vertex 0 is the single global sink) {10,21,20} {21,10} {21,12,10} {21,12,10,20} {20,10}
\\ See PARI link in A350794 for program code. A350360seq(15) \\ Andrew Howroyd, Jan 21 2022
# A simple but slow way is to start from all digraphs and filter # This code can get to n=5 # The linked C code was used to get to n=7 def one_global_sink(g): if (g.out_degree().count(0) != 1): return False; s = g.out_degree().index(0) return [g.distance(v,s) for v in g.vertices()].count(Infinity) == 0 [len([g for g in digraphs(n) if one_global_sink(g)]) for n in (0..5)]
Comments