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”).

A074569
a(n) = 4^n + 7^n + 9^n.
1
3, 20, 146, 1136, 9218, 76880, 653186, 5622896, 48877058, 428036240, 3770308226, 33362580656, 296287600898, 2638821947600, 23555283963266, 210639767346416, 1886257414388738, 16909829393522960, 151723117614386306
OFFSET
0,1
FORMULA
From Mohammad K. Azarian, Dec 30 2008: (Start)
G.f.: 1/(1-4*x) + 1/(1-7*x) + 1/(1-9*x).
E.g.f.: exp(4*x) + exp(7*x) + exp(9*x). (End)
MATHEMATICA
Table[4^n + 7^n + 9^n, {n, 0, 20}]
PROG
(Magma) [4^n + 7^n + 9^n: n in [0..20]]; // Vincenzo Librandi, Aug 14 2011
(PARI) vector(20, n, n--; 4^n + 7^n + 9^n) \\ G. C. Greubel, Nov 08 2018
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Robert G. Wilson v, Aug 23 2002
STATUS
approved