OFFSET
0,1
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..200
Index entries for linear recurrences with constant coefficients, signature (11,-18).
FORMULA
a(n) = 9*a(n-1) - 2^n.
a(n) = 11*a(n-1) - 18*a(n-2), with a(0) = 2, a(1) = 11.
From Mohammad K. Azarian, Jan 02 2009: (Start)
G.f.: 1/(1-2*x) + 1/(1-9*x).
E.g.f.: exp(2*x) + exp(9*x). (End)
MATHEMATICA
Table[2^n + 9^n, {n, 0, 25}]
LinearRecurrence[{11, -18}, {2, 11}, 26] (* Harvey P. Dale, Feb 28 2022 *)
PROG
(Magma) [2^n + 9^n: n in [0..35]]; // Vincenzo Librandi, Apr 30 2011
(SageMath) [2^n+9^n for n in range(31)] # G. C. Greubel, Jan 16 2024
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Robert G. Wilson v, Aug 25 2002
STATUS
approved
