OFFSET
1,1
COMMENTS
Extended to a(1)-a(2) using the formula/recurrence.
LINKS
Colin Barker, Table of n, a(n) for n = 1..1000
Eric Weisstein's World of Mathematics, Gear Graph
Eric Weisstein's World of Mathematics, Matching
Eric Weisstein's World of Mathematics, Maximal Independent Edge Set
Index entries for linear recurrences with constant coefficients, signature (5,-10,12,-11,7,-3,1).
FORMULA
G.f.: x*(3 - 9*x + 11*x^2 - 9*x^3 + 8*x^4 - 4*x^5 + 2*x^6) / ((1 - x)*(1 - 2*x + x^2 - x^3)^2). - Colin Barker, May 25 2017
MATHEMATICA
LinearRecurrence[{5, -10, 12, -11, 7, -3, 1}, {3, 6, 11, 22, 47, 98, 198}, 30]
CoefficientList[Series[(-3 + 9 x - 11 x^2 + 9 x^3 - 8 x^4 + 4 x^5 - 2 x^6)/((-1 + x) (-1 + 2 x - x^2 + x^3)^2), {x, 0, 20}], x] (* Eric W. Weisstein, Dec 30 2017 *)
Table[2 - n RootSum[-1 + # - 2 #^2 + #^3 &, 6 #^(n + 1) - 11 #^(n + 2) + 2 #^(n + 3) &]/23, {n, 20}] (* Eric W. Weisstein, Dec 30 2017 *)
PROG
(PARI) Vec(x*(3 - 9*x + 11*x^2 - 9*x^3 + 8*x^4 - 4*x^5 + 2*x^6) / ((1 - x)*(1 - 2*x + x^2 - x^3)^2) + O(x^40)) \\ Colin Barker, May 25 2017
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Eric W. Weisstein, May 24 2017
STATUS
approved