OFFSET
4,1
LINKS
Eric Weisstein's World of Mathematics, Maximal Independent Vertex Set
Eric Weisstein's World of Mathematics, Minimal Vertex Cover
Eric Weisstein's World of Mathematics, Wheel Graph
Index entries for linear recurrences with constant coefficients, signature (1, 1, 0, -1).
FORMULA
a(n) = a(n-1) + a(n-2) - a(n-4).
G.f.: (x^3 (4 - x - x^2 - 3 x^3))/(1 - x - x^2 + x^4).
MATHEMATICA
Table[1 + RootSum[-1 - # + #^3 &, #^(n - 1) &], {n, 4, 20}]
LinearRecurrence[{1, 1, 0, -1}, {4, 3, 6, 6, 8}, 20]
CoefficientList[Series[(4 - x - x^2 - 3 x^3)/(1 - x - x^2 + x^4), {x, 0, 20}], x]
CROSSREFS
KEYWORD
nonn
AUTHOR
Eric W. Weisstein, Aug 07 2017
STATUS
approved