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

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A172286 Numbers of circuits of length 2n in K_{n,n} (the complete bipartite graph on 2n vertices). 2
2, 32, 1458, 131072, 19531250, 4353564672, 1356446145698, 562949953421312, 300189270593998242, 200000000000000000000, 162805498773679522226642, 158993694406781688266883072, 183466660386537233316799232018 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Circuits are allowed to be self-intersecting and are directional with a designated start node. The number of (self-avoiding) directed cycles is given by A010790. - Andrew Howroyd, Sep 05 2018
LINKS
FORMULA
a(n) = 2*n^(2*n).
EXAMPLE
a(2) = 32 because there are 32 circuits of length 4 in the complete bipartite graph K2,2.
PROG
(MATLAB)
nmax = 10;
for k=1:nmax
an = 2*k^(2*k);
fprintf('%3.0f ', an);
end
(PARI) a(n)=2*n^(2*n); \\ Andrew Howroyd, Sep 05 2018
CROSSREFS
Sequence in context: A281183 A012209 A295418 * A129348 A280211 A087084
KEYWORD
easy,nonn
AUTHOR
Thibaut Lienart (syncthib(AT)gmail.com), Jan 30 2010
EXTENSIONS
More terms from Max Alekseyev, Jan 18 2012
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 May 4 16:30 EDT 2024. Contains 372256 sequences. (Running on oeis4.)