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!)
A283019 Primes which are the sum of three nonzero 8th powers. 3
3, 6563, 72353, 137633, 787811, 1745153, 7444673, 44726593, 49202147, 61503553, 86093443, 91858243, 100006817, 100072097, 101686177, 107444417, 143046977, 200006561, 214756067, 257412163, 300452323, 430372577, 431661313, 435812033, 447149537, 452523713, 489805633, 530372321, 744340577 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Primes of form x^8 + y^8 + z^8 where x, y, z > 0.
LINKS
EXAMPLE
3 = 1^8 + 1^8 + 1^8;
6563 = 1^8 + 1^8 + 3^8;
72353 = 2^8 + 3^8 + 4^8, etc.
MATHEMATICA
nn = 13; Select[Union[Plus @@@ (Tuples[Range[nn], {3}]^8)], # <= nn^8 && PrimeQ[#] &]
PROG
(PARI) list(lim)=my(v=List(), A, B, t); lim\=1; for(a=1, sqrtnint(lim-2, 8), A=a^8; for(b=1, min(sqrtnint(lim-A-1, 8), a), B=A+b^8; forstep(c=if(B%2, 2, 1), sqrtnint(lim-B, 8), 2, if(isprime(t=B+c^8), listput(v, t))))); Set(v) \\ Charles R Greathouse IV, Nov 05 2017
CROSSREFS
Sequence in context: A338412 A187879 A325052 * A056749 A281788 A134776
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Feb 26 2017
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 19 03:27 EDT 2024. Contains 371782 sequences. (Running on oeis4.)