The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A004845 Numbers that are the sum of at most 5 positive 5th powers. 4

%I #23 Oct 27 2023 20:59:12

%S 0,1,2,3,4,5,32,33,34,35,36,64,65,66,67,96,97,98,128,129,160,243,244,

%T 245,246,247,275,276,277,278,307,308,309,339,340,371,486,487,488,489,

%U 518,519,520,550,551,582,729,730,731,761,762,793,972,973,1004,1024

%N Numbers that are the sum of at most 5 positive 5th powers.

%H Alois P. Heinz, <a href="/A004845/b004845.txt">Table of n, a(n) for n = 1..10000</a> (first 300 terms from Vincenzo Librandi)

%p b:= proc(n, i, t) option remember; n=0 or i>0 and t>0

%p and (b(n, i-1, t) or i^5<=n and b(n-i^5, i, t-1))

%p end:

%p a:= proc(n) option remember; local k;

%p for k from 1+ `if`(n=1, -1, a(n-1))

%p while not b(k, iroot(k, 5), 5) do od; k

%p end:

%p seq(a(n), n=1..50); # _Alois P. Heinz_, Sep 16 2016

%t Select[Table[n, {n, 0, 1200}], Length[PowersRepresentations[#, 5, 5]] > 0 &] (* _Vladimir Joseph Stephan Orlovsky_, Jul 19 2011 *)

%Y Column k=5 of A336820.

%K nonn

%O 1,3

%A _N. J. A. Sloane_

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 May 20 11:05 EDT 2024. Contains 372712 sequences. (Running on oeis4.)