OFFSET
3,1
LINKS
Eric Weisstein's World of Mathematics, Antiprism Graph
Eric Weisstein's World of Mathematics, Graph Cycle
Index entries for linear recurrences with constant coefficients, signature (6,-11,8,-3,2,-1).
FORMULA
a(n) = 6*a(n-1) - 11*a(n-2) + 8*a(n-3) - 3*a(n-4) + 2*a(n-5) - a(n-6) for n>8. - Eric W. Weisstein, Dec 19 2013
G.f.: x^3*(63 - 199*x + 142*x^2 - 54*x^3 + 35*x^4 - 19*x^5)/((1 - x)^3*(1 - 3*x - x^2 - x^3)). - Bruno Berselli, Dec 20 2013
MATHEMATICA
LinearRecurrence[{6, -11, 8, -3, 2, -1}, {63, 179, 523, 1619, 5239, 17379}, 22] (* Eric W. Weisstein, Dec 19 2013 *)
Table[4 n (n - 1) + RootSum[-1 - # - 3 #^2 + #^3 &, #^n &], {n, 3, 20}] (* Eric W. Weisstein, May 05 2017 *)
CoefficientList[Series[(63 - 199 x + 142 x^2 - 54 x^3 + 35 x^4 - 19 x^5)/((-1 + x)^3 (-1 + 3 x + x^2 + x^3)), {x, 0, 20}], x] (* Eric W. Weisstein, Dec 14 2017 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Eric W. Weisstein, Nov 01 2002
EXTENSIONS
a(7)-a(10) from Max Alekseyev, May 02 2010
STATUS
approved