OFFSET
0,2
LINKS
Index entries for linear recurrences with constant coefficients, signature (9, 0, -14).
FORMULA
For n>3, a(n) = 9*a(n-1) - 14*a(n-3), a(0)=1, a(1)=10, a(2)=88, a(3)=776.
G.f.: (1 + x - 2*x^2 - 2*x^3)/(1 - 9*x + 14*x^3).
MATHEMATICA
LinearRecurrence[{9, 0, -14}, {1, 10, 88, 776}, 30]
PROG
(Python)
def a(n):
.if n in [0, 1, 2, 3]:
..return [1, 10, 88, 776][n]
.return 9*a(n-1)-14*a(n-3)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
David Nacin, Jun 02 2017
STATUS
approved