OFFSET
0,2
LINKS
Index entries for linear recurrences with constant coefficients, signature (12,-39,28).
FORMULA
G.f.: 1/(1-7*x)-1/(1-4*x)+1/(1-x). E.g.f.: e^(7*x)-e^(4*x)+e^x.
a(n) = 11*a(n-1)-28*a(n-2)+18 with a(0)=1, a(1)=4. - Vincenzo Librandi, Jul 21 2010
MATHEMATICA
Table[7^n-4^n+1, {n, 0, 20}] (* or *) LinearRecurrence[{12, -39, 28}, {1, 4, 34}, 20] (* Harvey P. Dale, Jul 16 2017 *)
PROG
(PARI) a(n)=7^n-4^n+1 \\ Charles R Greathouse IV, Sep 24 2015
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Mohammad K. Azarian, Jan 30 2009
STATUS
approved