[go: up one dir, main page]

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

A074518
a(n) = 1^n + 5^n + 8^n.
0
3, 14, 90, 638, 4722, 35894, 277770, 2175278, 17167842, 136170854, 1083507450, 8638762718, 68963617362, 550976517014, 4404150026730, 35214889666958, 281627564601282, 2252562753138374, 18018213206747610, 144134261562183998
OFFSET
0,1
FORMULA
From Mohammad K. Azarian, Dec 26 2008: (Start)
G.f.: 1/(1-x) + 1/(1-5*x) + 1/(1-8*x).
E.g.f.: e^x + e^(5*x) + e^(8*x). (End)
a(n) = 13*a(n-1) - 40*a(n-2) + 28 with a(0)=3, a(1)=14. - Vincenzo Librandi, Jul 21 2010
a(0)=3, a(1)=14, a(2)=90, a(n) = 14*a(n-1) - 53*a(n-2) + 40*a(n-3). - Harvey P. Dale, Sep 24 2013
MATHEMATICA
Table[1^n + 5^n + 8^n, {n, 0, 20}]
LinearRecurrence[{14, -53, 40}, {3, 14, 90}, 30] (* Harvey P. Dale, Sep 24 2013 *)
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Robert G. Wilson v, Aug 23 2002
STATUS
approved