OFFSET
3,1
LINKS
Eric Weisstein's World of Mathematics, Clique
Eric Weisstein's World of Mathematics, Cube-Connected Cycle Graph
Index entries for linear recurrences with constant coefficients, signature (5, -8, 4).
FORMULA
a(n) = 5*2^(n - 1)*n + 1 for n > 3.
a(n) = 5*a(n-1) - 8*a(n-2) + 4*a(n-3) for n > 3.
G.f.: x^3*(-69 + 184*x - 148*x^2 + 32*x^3)/((-1 + x)*(-1 + 2*x)^2).
MATHEMATICA
Table[If[n == 3, 69, 5 2^(n - 1) n + 1], {n, 3, 20}]
Join[{69}, LinearRecurrence[{5, -8, 4}, {161, 401, 961}, 20]]
CoefficientList[Series[(-69 + 184 x - 148 x^2 + 32 x^3)/((-1 + x) (-1 + 2 x)^2), {x, 0, 20}], x]
CROSSREFS
KEYWORD
nonn
AUTHOR
Eric W. Weisstein, Nov 29 2017
STATUS
approved