OFFSET
0,3
COMMENTS
These graphs share the same degree sequence as the complete bipartite graphs K(n,n).
LINKS
Atabey Kaygun, Counting Graphs with a Prescribed Degree Sequence
Atabey Kaygun, Enumerating Labeled Graphs that Realize a Fixed Degree Sequence, arXiv:2101.02299 [math.CO], 2021.
FORMULA
a(n) = A059441(2*n, n).
PROG
(Common Lisp) ; See Links in A339847 for the graph-count function.
(defun A361254 (n)
(graph-count (loop repeat (* 2 n) collect n)))
(PARI) \\ See Links in A295193 for GraphsByDegreeSeq.
a(n)={if(n==0, 1, vecsum(GraphsByDegreeSeq(2*n, n, (p, r)->valuation(p, x) >= n-r)[, 2])) } \\ Andrew Howroyd, Mar 06 2023
CROSSREFS
KEYWORD
nonn
AUTHOR
Atabey Kaygun, Mar 06 2023
EXTENSIONS
a(11)-a(12) from Andrew Howroyd, Mar 06 2023
STATUS
approved