OFFSET
2,1
COMMENTS
For n > 2, also the number of maximal irredundant sets in the n-helm graph.
LINKS
Eric Weisstein's World of Mathematics, Helm Graph
Eric Weisstein's World of Mathematics, Maximal Irredundant Set
Index entries for linear recurrences with constant coefficients, signature (6,-13,12,-4).
FORMULA
a(n) = 2^n*(n/8 + 1) - n.
a(n) = 6*a(n-1) - 13*a(n-2) + 12*a(n-3) -4*a(n-4).
G.f.: x^2*(3 - 10*x + 11*x^2 - 5*x^3)/(1 - 3*x + 2*x^2)^2.
E.g.f.: (1/4)*(1 + exp(x))*((4 +x)*exp(x) - (4 + 5*x)). - G. C. Greubel, Aug 17 2017
MATHEMATICA
Table[2^n (n/8 + 1) - n, {n, 2, 20}]
LinearRecurrence[{6, -13, 12, -4}, {3, 8, 20, 47}, 20]
CoefficientList[Series[(3 - 10 x + 11 x^2 - 5 x^3)/(1 - 3 x + 2 x^2)^2, {x, 0, 20}], x]
PROG
(PARI) x='x+O('x^50); Vec(x^2*(3 - 10*x + 11*x^2 - 5*x^3)/(1 - 3*x + 2*x^2)^2) \\ G. C. Greubel, Aug 17 2017
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Eric W. Weisstein, Aug 17 2017
STATUS
approved