cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A001579 a(n) = 3^n + 5^n + 6^n.

This page as a plain text file.
%I A001579 #36 Jan 05 2025 19:51:32
%S A001579 3,14,70,368,2002,11144,63010,360248,2076802,12050504,70290850,
%T A001579 411802328,2421454402,14282991464,84472462690,500716911608,
%U A001579 2973740844802,17689728038024,105375041354530,628434388600088
%N A001579 a(n) = 3^n + 5^n + 6^n.
%H A001579 Vincenzo Librandi, <a href="/A001579/b001579.txt">Table of n, a(n) for n = 0..300</a>
%H A001579 Henri W. Gould, <a href="https://web.archive.org/web/2024*/https://www.fq.math.ca/Scanned/37-2/gould.pdf">The Girard-Waring power sum formulas for symmetric functions and Fibonacci sequences</a>, The Fibonacci Quarterly, 37(2):135-140, 1999.
%H A001579 <a href="/index/Rec#order_03">Index entries for linear recurrences with constant coefficients</a>, signature (14,-63,90).
%F A001579 From _Mohammad K. Azarian_, Dec 26 2008: (Start)
%F A001579 G.f.: 1/(1-3*x) + 1/(1-5*x) + 1/(1-6*x).
%F A001579 E.g.f.: e^(3*x) + e^(5*x) + e^(6*x). (End)
%t A001579 Table[3^n + 5^n + 6^n, {n, 0, 20}]
%t A001579 LinearRecurrence[{14,-63,90},{3,14,70},20] (* _Harvey P. Dale_, Jun 17 2021 *)
%o A001579 (Magma) [3^n + 5^n + 6^n: n in [0..20]]; // _Vincenzo Librandi_, May 20 2011
%o A001579 (PARI) a(n)=3^n+5^n+6^n \\ _Charles R Greathouse IV_, Jun 10 2011
%o A001579 (Python)
%o A001579 def a(n): return 3**n + 5**n + 6**n
%o A001579 print([a(n) for n in range(20)]) # _Michael S. Branicky_, Mar 14 2021
%Y A001579 Cf. A001550, A001576, A034513, A074501-A074580.
%K A001579 easy,nonn
%O A001579 0,1
%A A001579 _N. J. A. Sloane_