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!)
A297384 Number of Eulerian cycles in the n-antiprism graph. 2
4, 44, 372, 2932, 22484, 170196, 1279828, 9590612, 71736660, 536055124, 4003591508, 29892900180, 223162389844, 1665861735764, 12434781197652, 92816950121812, 692805066118484, 5171207088198996, 38598573880071508, 288104312443589972, 2150442403051689300 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Sequence extrapolated to n=1 and n=2 using the recurrence. - Andrew Howroyd, Jan 11 2018
LINKS
Eric Weisstein's World of Mathematics, Antiprism Graph
Eric Weisstein's World of Mathematics, Eulerian Cycle
FORMULA
From Andrew Howroyd, Jan 11 2018: (Start)
a(n) = 13*a(n-1) - 48*a(n-2) + 52*a(n-3) - 16*a(n-4).
G.f.: 4*x*(1 - 2*x - 2*x^2)/((1 - 8*x + 4*x^2)*(1 - 4*x)*(1 - x)).
(End)
From Eric W. Weisstein, Jan 12 2018: (Start)
a(n) = 2^n*((2 - sqrt(3))^n + (2 + sqrt(3))^n) - 2/3*(2 + 4^n).
a(n) = 2^n*A003500(n) - 2/3*(2 + 4^n).
a(n) = A003500(n) - A039301(n-1).
(End)
MATHEMATICA
Table[2^n ((2 - Sqrt[3])^n + (2 + Sqrt[3])^n) - 2/3 (2 + 4^n), {n, 20}] // Expand
Table[2^n LucasL[2 n, Sqrt[2]] - 2/3 (2 + 4^n), {n, 20}] // Round
LinearRecurrence[{13, -48, 52, -16}, {4, 44, 372, 2932}, 20]
CoefficientList[Series[-4 (-1 + 2 x + 2 x^2)/(1 - 13 x + 48 x^2 - 52 x^3 + 16 x^4), {x, 0, 20}], x]
PROG
(PARI) Vec(4*(1 - 2*x - 2*x^2)/((1 - 8*x + 4*x^2)*(1 - 4*x)*(1 - x)) + O(x^30)) \\ Andrew Howroyd, Jan 11 2018
CROSSREFS
Sequence in context: A259989 A030987 A341590 * A178294 A043039 A198962
KEYWORD
nonn,easy
AUTHOR
Eric W. Weisstein, Dec 29 2017
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 21:32 EDT 2024. Contains 372257 sequences. (Running on oeis4.)