OFFSET
0,1
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..200
Index entries for linear recurrences with constant coefficients, signature (13,-54,72).
FORMULA
From Mohammad K. Azarian, Dec 28 2008: (Start)
G.f.: 1/(1-3*x) + 1/(1-4*x) + 1/(1-6*x).
E.g.f.: exp(3*x) + exp(4*x) + exp(6*x). (End)
a(n) = 13*a(n-1) - 54*a(n-2) + 72*a(n-3).
MATHEMATICA
Table[3^n + 4^n + 6^n, {n, 0, 21}]
LinearRecurrence[{13, -54, 72}, {3, 13, 61}, 30] (* Harvey P. Dale, Dec 21 2022 *)
PROG
(Magma) [3^n + 4^n + 6^n: n in [0..30]]; // Vincenzo Librandi, Jun 13 2011
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Robert G. Wilson v, Aug 23 2002
STATUS
approved