OFFSET
0,2
COMMENTS
The n-double cone graph is defined for n >= 3. The sequence has been extended to a(0)-a(2) using the formula/recurrence. - Andrew Howroyd, Aug 08 2023
LINKS
Andrew Howroyd, Table of n, a(n) for n = 0..200
Eric Weisstein's World of Mathematics, Double Cone Graph
Eric Weisstein's World of Mathematics, Edge Cover
Index entries for linear recurrences with constant coefficients, signature (13,2,-75,-17,38,-8).
FORMULA
From Andrew Howroyd, Aug 08 2023: (Start)
a(n) = 13*a(n-1) + 2*a(n-2) - 75*a(n-3) - 17*a(n-4) + 38*a(n-5) - 8*a(n-6) for n >= 6.
G.f.: x*(8 + 56*x - 87*x^2 + 35*x^3 - 10*x^4)/((1 + x)*(1 + 2*x)*(1 - 3*x + x^2)*(1 - 13*x + 4*x^2)). (End)
MATHEMATICA
LinearRecurrence[{13, 2, -75, -17, 38, -8}, {0, 8, 160, 2009, 25872, 328208}, 25] (* Paolo Xausa, Nov 18 2023 *)
CoefficientList[Series[-x (-8 - 56 x + 87 x^2 - 35 x^3 + 10 x^4)/((1 + x) (1 + 2 x) (1 - 3 x + x^2) (1 - 13 x + 4 x^2)), {x, 0, 20}], x] (* Eric W. Weisstein, May 25 2024 *)
Table[2 (-1)^n (2^n - 1) - LucasL[2 n] + ((13 - 3 Sqrt[17])^n + (13 + 3 Sqrt[17])^n)/2^n, {n, 20}] // Expand (* Eric W. Weisstein, May 25 2024 *)
PROG
(PARI) concat(0, Vec((8 + 56*x - 87*x^2 + 35*x^3 - 10*x^4)/((1 + x)*(1 + 2*x)*(1 - 3*x + x^2)*(1 - 13*x + 4*x^2)) + O(x^20))) \\ Andrew Howroyd, Aug 08 2023
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Eric W. Weisstein, Aug 05 2023
EXTENSIONS
a(0)-a(2) and terms a(8) and beyond from Andrew Howroyd, Aug 08 2023
STATUS
approved
