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