login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A074540
a(n) = 2^n + 5^n + 9^n.
1
3, 16, 110, 862, 7202, 62206, 547130, 4861222, 43437602, 389374126, 3496551050, 31429889782, 282673681202, 2543086539646, 22882895986970, 205921649705542, 1853172776808002, 16677944639250766, 150098449994526890, 1350870791159844502, 12157760826489618002
OFFSET
0,1
FORMULA
From Mohammad K. Azarian, Dec 27 2008: (Start)
G.f.: 1/(1-2*x) + 1/(1-5*x) + 1/(1-9*x).
E.g.f.: exp(2*x) + exp(5*x) + exp(9*x). (End)
a(n) = 16*a(n-1) - 73*a(n-2) + 90*a(n-3) for n > 2. - Wesley Ivan Hurt, Oct 06 2017
MAPLE
A074540:=n->2^n + 5^n + 9^n: seq(A074540(n), n=0..30); # Wesley Ivan Hurt, Oct 06 2017
MATHEMATICA
Table[2^n + 5^n + 9^n, {n, 0, 20}]
PROG
(Magma) [2^n + 5^n + 9^n: n in [0..25]]; // Vincenzo Librandi, Jun 11 2011
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Robert G. Wilson v, Aug 23 2002
STATUS
approved