OFFSET
1,1
COMMENTS
For n > 1, also the number of maximal irredundant sets in the n-book graph.
LINKS
Eric Weisstein's World of Mathematics, Book 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 + 1) - 3*(n - 1).
a(n) = 6*a(n-1) - 13*a(n-2) + 12*a(n-3) - 4*a(n-4).
G.f.: (x (4 - 15 x + 24 x^2 - 16 x^3))/(1 - 3 x + 2 x^2)^2.
MATHEMATICA
Table[2^n (n + 1) - 3 (n - 1), {n, 20}]
LinearRecurrence[{6, -13, 12, -4}, {4, 9, 26, 71, 180}, 20]
CoefficientList[Series[(4 - 15 x + 24 x^2 - 16 x^3)/(1 - 3 x + 2 x^2)^2, {x, 0, 20}], x]
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Eric W. Weisstein, Aug 17 2017
STATUS
approved