OFFSET
0,1
COMMENTS
The sequence has been extended to a(0) using the recurrence. - Andrew Howroyd, Feb 11 2026
LINKS
Andrew Howroyd, Table of n, a(n) for n = 0..500
Eric Weisstein's World of Mathematics, Dominating Set.
Eric Weisstein's World of Mathematics, Necklace Graph.
Index entries for linear recurrences with constant coefficients, signature (15,-13,3).
FORMULA
G.f.: (3 - 30*x + 13*x^2)/(1 - 15*x + 13*x^2 - 3*x^3). - Andrew Howroyd, Feb 11 2026
a(n) = 15*a(n-1)-13*a(n-2)+3*a(n-3). - Eric W. Weisstein, Feb 12 2026
MATHEMATICA
Table[RootSum[-3 + 13 # - 15 #^2 + #^3 &, #^n &], {n, 0, 20}]
RootSum[-3 + 13 # - 15 #^2 + #^3 &, #^Range[0, 20] &]
LinearRecurrence[{15, -13, 3}, {15, 199, 2799}, {0, 20}]
CoefficientList[Series[(-15 + 26 x - 9 x^2)/(-1 + 15 x - 13 x^2 + 3 x^3), {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 11 2026
STATUS
approved
