OFFSET
0,1
COMMENTS
The sequence has been extended to a(0) using the recurrence. - Andrew Howroyd, Feb 12 2026
LINKS
Andrew Howroyd, Table of n, a(n) for n = 0..500
Eric Weisstein's World of Mathematics, Necklace Graph.
Eric Weisstein's World of Mathematics, Total Dominating Set.
Index entries for linear recurrences with constant coefficients, signature (11,-1,21,6).
FORMULA
G.f.: (4 - 33*x + 2*x^2 - 21*x^3)/(1 - 11*x + x^2 - 21*x^3 - 6*x^4). - Andrew Howroyd, Feb 12 2026
a(n) = 11*a(n-1)-a(n-2)+21*a(n-3)+6*a(n-4). - Eric W. Weisstein, Feb 13 2026
MATHEMATICA
Table[RootSum[-6 - 21 # + #^2 - 11 #^3 + #^4 &, #^n &], {n, 0, 20}]
RootSum[-6 - 21 # + #^2 - 11 #^3 + #^4 &, #^Range[0, 20] &]
LinearRecurrence[{11, -1, 21, 6}, {11, 119, 1361, 15107}, {0, 20}]
CoefficientList[Series[(-4 + 33 x - 2 x^2 + 21 x^3)/(-1 + 11 x - x^2 + 21 x^3 + 6 x^4), {x, 0, 20}], x]
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Eric W. Weisstein, Feb 11 2026
EXTENSIONS
a(0) prepended and a(7) onward from Andrew Howroyd, Feb 12 2026
STATUS
approved
