OFFSET
2,1
COMMENTS
a(n) is also the number of circuits of length n in the complete graph on n vertices. - Thibaut Lienart (syncthib(AT)gmail.com), Jan 29 2010
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 A124355. - Andrew Howroyd, Sep 05 2018
a(n) is also the number of graph colorings of the cycle graph C_n with n colors. - Orson R. L. Peters, Jul 27 2020
LINKS
Andrew Howroyd, Table of n, a(n) for n = 2..100
FORMULA
a(n) = (n-1)^n + (-1)^n*(n-1).
MATHEMATICA
a[n_]:=(n-1)^n + (-1)^n*(n-1); Array[a, 50, {2, 51}] (* Stefano Spezia, Sep 07 2018 *)
PROG
(PARI) a(n) = (n-1)^n + (-1)^n*(n-1); \\ Andrew Howroyd, Sep 05 2018
(Magma) [(n-1)^n + (-1)^n*(n-1) : n in [2..20]]; // Wesley Ivan Hurt, Jul 27 2020
CROSSREFS
KEYWORD
nonn
AUTHOR
Warut Roonguthai, May 06 2006
STATUS
approved