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!)
A309763 Numbers that are the sum of 4 nonzero 4th powers in more than one way. 9

%I #10 Jul 31 2021 18:21:42

%S 259,2674,2689,2754,2929,3298,3969,4144,4209,5074,6579,6594,6659,6769,

%T 6834,7203,7874,8194,8979,9154,9234,10113,10674,11298,12673,12913,

%U 13139,14674,14689,14754,16563,16578,16643,16818,17187,17234,17299,17314,17858,18963,19699

%N Numbers that are the sum of 4 nonzero 4th powers in more than one way.

%H Robert Israel, <a href="/A309763/b309763.txt">Table of n, a(n) for n = 1..10000</a>

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/BiquadraticNumber.html">Biquadratic Number</a>

%e 259 = 1^4 + 1^4 + 1^4 + 4^4 = 2^4 + 3^4 + 3^4 + 3^4, so 259 is in the sequence.

%p N:= 10^5: # for terms <= N

%p V:= Vector(N, datatype=integer[4]):

%p for a from 1 while a^4 <= N do

%p for b from 1 to a while a^4+b^4 <= N do

%p for c from 1 to b while a^4 + b^4+ c^4 <= N do

%p for d from 1 to c do

%p v:= a^4+b^4+c^4+d^4;

%p if v > N then break fi;

%p V[v]:= V[v]+1

%p od od od od:

%p select(i -> V[i]>1, [$1..N]); # _Robert Israel_, Oct 07 2019

%t Select[Range@20000, Length@Select[PowersRepresentations[#, 4, 4], ! MemberQ[#, 0] &] > 1 &]

%Y Cf. A000583, A003338, A018786, A025367, A025406, A309762, A344193, A344238, A344241, A344644.

%K nonn

%O 1,1

%A _Ilya Gutkovskiy_, Aug 15 2019

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 23 08:52 EDT 2024. Contains 372760 sequences. (Running on oeis4.)