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.

A133073 a(n) = n^5 + n^3 + n^2.

This page as a plain text file.
%I A133073 #35 Mar 11 2025 10:50:28
%S A133073 0,3,44,279,1104,3275,8028,17199,33344,59859,101100,162503,250704,
%T A133073 373659,540764,762975,1052928,1425059,1895724,2483319,3208400,4093803,
%U A133073 5164764,6449039,7977024,9781875,11899628,14369319,17233104,20536379,24327900,28659903,33588224,39172419,45475884
%N A133073 a(n) = n^5 + n^3 + n^2.
%C A133073 Exponents are prime numbers in decreasing order.
%H A133073 Ivan Panchenko, <a href="/A133073/b133073.txt">Table of n, a(n) for n = 0..1000</a>
%F A133073 G.f.: x*(3 + 26*x + 60*x^2 + 30*x^3 + x^4)/(1-x)^6. - _R. J. Mathar_, Nov 14 2007
%F A133073 a(n) = n^2*(n^3 + n + 1). - _Wesley Ivan Hurt_, Mar 02 2023
%e A133073 a(7) = 17199 because 7^5 = 16807, 7^3 = 343, 7^2 = 49 and we can write 16807 + 343 + 49 = 17199.
%t A133073 Total[#^{5,3,2}]&/@Range[0,40]  (* _Harvey P. Dale_, Jan 18 2011 *)
%t A133073 LinearRecurrence[{6,-15,20,-15,6,-1},{0,3,44,279,1104,3275},35] (* _James C. McMahon_, Mar 10 2025 *)
%o A133073 (Magma)[n^5+n^3+n^2: n in [0..50]]; // _Vincenzo Librandi_, Dec 15 2010
%o A133073 (PARI) for(n=0,50, print1(n^5 + n^3 + n^2, ", ")) \\ _G. C. Greubel_, Oct 20 2017
%Y A133073 Cf. A000290, A000578, A000584, A011379, A045991, A100019.
%Y A133073 Cf. A133070, A133071, A133072.
%K A133073 nonn
%O A133073 0,2
%A A133073 _Omar E. Pol_, Nov 01 2007
%E A133073 More terms from _Vincenzo Librandi_, Dec 15 2010