OFFSET
1,1
COMMENTS
Also number of edge cuts in the n-book graph.
LINKS
Eric Weisstein's World of Mathematics, Book Graph.
Eric Weisstein's World of Mathematics, Edge Cut.
Index entries for linear recurrences with constant coefficients, signature (15,-68,96).
FORMULA
a(n) = 15*a(n-1)-68*a(n-2)+96*a(n-3).
G.f.: x*(-11+60*x-96*x^2)/(-1+15*x-68*x^2+96*x^3).
MATHEMATICA
Table[3^n + 2^(3 n + 1) - 2^(2 n + 1), {n, 20}]
LinearRecurrence[{15, -68, 96}, {11, 105, 923}, 20]
CoefficientList[Series[-(11 - 60 x + 96 x^2)/((-1 + 3 x) (-1 + 4 x) (-1 + 8 x)), {x, 0, 20}], x]
PROG
(Python)
def A377641(n): return 3**n+(2<<3*n)-(2<<(n<<1)) # Chai Wah Wu, Nov 03 2024
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Eric W. Weisstein, Nov 03 2024
STATUS
approved