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!)
A363281 Numbers which are the sum of 4 squares of distinct primes. 1
87, 159, 183, 199, 204, 207, 231, 247, 252, 303, 319, 324, 327, 343, 348, 351, 364, 367, 372, 399, 423, 439, 444, 463, 468, 471, 484, 487, 492, 495, 511, 516, 532, 535, 540, 543, 556, 559, 564, 567, 583, 588, 591, 604, 607, 612, 628, 655, 660, 663, 676, 679, 684, 700, 703, 708 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
87 is a term as 87 = 2^2 + 3^2 + 5^2 + 7^2.
MATHEMATICA
Select[Range@1000,
Length[PowersRepresentations[#, 4, 2] // Select[AllTrue@PrimeQ] //
Select[DuplicateFreeQ]] > 0 &]
PROG
(Python)
from itertools import combinations as comb
ps=[p**2 for p in [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31]]
a=[n for n in range(1001) if n in [sum(n) for n in list(comb(ps, 4))]]
print(a)
(PARI) upto(n) = {if(n <= 86, return([])); my(pr = primes(primepi(sqrtint(n - 38))), res = List()); forvec(v = vector(4, i, [1, #pr]), c = sum(i = 1, #v, pr[v[i]]^2); if(c <= n, listput(res, c)), 2); listsort(res, 1); res} \\ David A. Corneth, Jul 12 2023
CROSSREFS
Sequence in context: A095567 A205672 A039489 * A031891 A147140 A044257
KEYWORD
easy,nonn
AUTHOR
Zhining Yang, May 25 2023
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 May 2 16:53 EDT 2024. Contains 372197 sequences. (Running on oeis4.)