login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 60th year, we have over 367,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Other ways to Give
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A361254 Number of n-regular graphs on 2*n labeled nodes. 1
1, 1, 3, 70, 19355, 66462606, 2977635137862, 1803595358964773088, 15138592322753242235338875, 1793196665025885172290508971592750, 3040059281615704147007085764679679740691838, 74597015246986083384362428357508730776063716190667288, 26737694395324301026230134763403079891362936970900741153038680278 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
These graphs share the same degree sequence as the complete bipartite graphs K(n,n).
LINKS
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
Sequence in context: A210920 A140048 A135951 * A093245 A108231 A130894
KEYWORD
nonn
AUTHOR
Atabey Kaygun, Mar 06 2023
EXTENSIONS
a(11)-a(12) from Andrew Howroyd, Mar 06 2023
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified December 2 14:16 EST 2023. Contains 367524 sequences. (Running on oeis4.)