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.

Showing 1-1 of 1 results.

A353263 Primes whose square is the sum of the cubes of four primes, not necessarily distinct.

Original entry on oeis.org

1193, 1949, 5639, 7907, 8501, 10301, 20101, 20939, 29137, 30091, 34403, 65173, 68567, 70249, 70537, 76801, 84163, 105943, 109147, 116483, 153247, 161753, 169943, 171733, 175829, 180563, 208589, 214483, 222197, 224969, 242483, 261427, 280507, 313933, 317327, 319883
Offset: 1

Views

Author

Michel Marcus, Apr 09 2022

Keywords

Comments

The sum must contain 2^3, else it will be even, hence not prime. - Michael S. Branicky, Apr 10 2022

Examples

			1193 is a term because 2^3 + 29^3 + 47^3 + 109^3 = 1423249 = 1193^2.
		

Crossrefs

Square roots of the intersection of A346917 and A001248.
Cf. A353249.

Programs

  • PARI
    list(lim)=my(v=List(), P=apply(p->p^3, primes(sqrtnint(lim\=1, 3)))); foreach(P, p, foreach(P, q, foreach(P, r, my(s=p+q+r, t); for(i=1, #P, t=s+P[i]; if(t>lim, break); if (issquare(t, &rr) && isprime(rr), listput(v, rr)))))); v = Set(v); \\ after A346917

Extensions

a(11) and beyond from Michael S. Branicky, Apr 09 2022
Showing 1-1 of 1 results.