login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A001579 a(n) = 3^n + 5^n + 6^n. 84
3, 14, 70, 368, 2002, 11144, 63010, 360248, 2076802, 12050504, 70290850, 411802328, 2421454402, 14282991464, 84472462690, 500716911608, 2973740844802, 17689728038024, 105375041354530, 628434388600088 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
Henri W. Gould, The Girard-Waring power sum formulas for symmetric functions and Fibonacci sequences, The Fibonacci Quarterly, 37(2):135-140, 1999.
FORMULA
From Mohammad K. Azarian, Dec 26 2008: (Start)
G.f.: 1/(1-3*x) + 1/(1-5*x) + 1/(1-6*x).
E.g.f.: e^(3*x) + e^(5*x) + e^(6*x). (End)
MATHEMATICA
Table[3^n + 5^n + 6^n, {n, 0, 20}]
LinearRecurrence[{14, -63, 90}, {3, 14, 70}, 20] (* Harvey P. Dale, Jun 17 2021 *)
PROG
(Magma) [3^n + 5^n + 6^n: n in [0..20]]; // Vincenzo Librandi, May 20 2011
(PARI) a(n)=3^n+5^n+6^n \\ Charles R Greathouse IV, Jun 10 2011
(Python)
def a(n): return 3**n + 5**n + 6**n
print([a(n) for n in range(20)]) # Michael S. Branicky, Mar 14 2021
CROSSREFS
Sequence in context: A261207 A161939 A270598 * A327871 A006772 A320421
KEYWORD
easy,nonn
AUTHOR
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)