OFFSET
1,1
COMMENTS
Sequence extrapolated to n=1 using recurrence. - Andrew Howroyd, Jun 26 2018
LINKS
Andrew Howroyd, Table of n, a(n) for n = 1..200
Eric Weisstein's World of Mathematics, Dipyramidal Graph
Eric Weisstein's World of Mathematics, Edge Cover
Index entries for linear recurrences with constant coefficients, signature (11, -24, -21, 33, 34, 8).
FORMULA
From Andrew Howroyd, Jun 26 2018: (Start)
a(n) = 11*a(n-1) - 24*a(n-2) - 21*a(n-3) + 33*a(n-4) + 34*a(n-5) + 8*a(n-6) for n > 6.
G.f.: x*(2 + 2*x + x^2)*(1 + 5*x + 2*x^2)/((1 - x - x^2)*(1 - 3*x - 2*x^2)*(1 - 7*x - 4*x^2)). (End)
MATHEMATICA
Table[LucasL[n] + 2^-n ((7 - Sqrt[65])^n + (7 + Sqrt[65])^n) - 2^(-n + 1) ((3 - Sqrt[17])^n + (3 + Sqrt[17])^n), {n, 20}] // Expand
LinearRecurrence[{11, -24, -21, 33, 34, 8}, {2, 34, 341, 2902, 23092, 178393}, 20]
CoefficientList[Series[(-2 - 12 x - 15 x^2 - 9 x^3 - 2 x^4)/(-1 + 11 x - 24 x^2 - 21 x^3 + 33 x^4 + 34 x^5 + 8 x^6), {x, 0, 20}], x]
PROG
(PARI) Vec((2 + 2*x + x^2)*(1 + 5*x + 2*x^2)/((1 - x - x^2)*(1 - 3*x - 2*x^2)*(1 - 7*x - 4*x^2)) + O(x^30)) \\ Andrew Howroyd, Jun 26 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
Eric W. Weisstein, Jun 18 2018
EXTENSIONS
a(1)-a(2) and terms a(11) and beyond from Andrew Howroyd, Jun 26 2018
STATUS
approved