OFFSET
1,1
LINKS
Andrew Howroyd, Table of n, a(n) for n = 1..200
Eric Weisstein's World of Mathematics, King Graph
Eric Weisstein's World of Mathematics, Minimal Dominating Set
Index entries for linear recurrences with constant coefficients, signature (0, 2, 2, 4, 0, -8).
FORMULA
a(n) = 2*a(n-2)+2*a(n-3)+4*a(n-4)-8*a(n-6) for n>6.
G.f.: 2*x*(1 + 2*x + x^2 + 2*x^3 - 4*x^4 - 4*x^5)/(1 - 2*x^2 - 2*x^3 - 4*x^4 + 8*x^6).
MATHEMATICA
Table[RootSum[8 - 4 #1^2 - 2 #1^3 - 2 #1^4 + #1^6 &, 36 #1^n - 36 #1^(2 + n) + 55 #1^(3 + n) - 3 #1^(4 + n) + 32 #1^(5 + n) &]/970, {n, 10}] (* Eric W. Weisstein, Aug 04 2017 *)
LinearRecurrence[{0, 2, 2, 4, 0, -8}, {2, 4, 6, 16, 20, 52}, 20] (* Eric W. Weisstein, Aug 03 2017 *)
CoefficientList[Series[-((2 (-1 - 2 x - x^2 - 2 x^3 + 4 x^4 + 4 x^5))/(1 - 2 x^2 - 2 x^3 - 4 x^4 + 8 x^6)), {x, 0, 20}], x] (* Eric W. Weisstein, Aug 03 2017 *)
PROG
(PARI)
Vec(2*(1+2*x+x^2+2*x^3-4*x^4-4*x^5)/(1-2*x^2-2*x^3-4*x^4+8*x^6)+O(x^40))
CROSSREFS
KEYWORD
nonn
AUTHOR
Andrew Howroyd, Aug 01 2017
STATUS
approved