OFFSET
1,1
LINKS
Eric Weisstein's World of Mathematics, Maximum Independent Vertex Set.
Eric Weisstein's World of Mathematics, Necklace Graph.
Index entries for linear recurrences with constant coefficients, signature (4,-3,2).
FORMULA
a(n) = 4*a(n-1)-3*a(n-2)+2*a(n-3).
G.f.: (-2*x*(2-3*x+3*x^2))/(-1+4*x-3*x^2+2*x^3).
MATHEMATICA
Table[RootSum[-2 + 3 # - 4 #^2 + #^3 &, #^n &], {n, 20}]
RootSum[-2 + 3 # - 4 #^2 + #^3 &, #^Range[20] &]
LinearRecurrence[{4, -3, 2}, {4, 10, 34}, 20]
CoefficientList[Series[-2 (2 - 3 x + 3 x^2)/(-1 + 4 x - 3 x^2 + 2 x^3), {x, 0, 20}], x]
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Eric W. Weisstein, Feb 15 2026
STATUS
approved
