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.

A160024 Primes p such that p^4 + 11^4 + 3^4 is prime.

This page as a plain text file.
%I A160024 #11 Apr 18 2023 18:44:13
%S A160024 7,11,13,19,23,31,41,47,61,67,73,83,101,107,127,157,163,191,193,277,
%T A160024 281,311,337,373,379,401,409,431,443,461,491,523,541,569,607,643,673,
%U A160024 691,719,733,743,757,769,887,929,947,953,1031,1039,1087,1093,1097,1103,1109
%N A160024 Primes p such that p^4 + 11^4 + 3^4 is prime.
%C A160024 For primes p, q, r the sum p^4 + q^4 + r^4 can be prime only if at least one of p, q, r equals 3. This sequence is the special case q = 11, r = 3.
%C A160024 It is conjectured that the sequence is infinite.
%C A160024 There are prime twins (11, 13) and other consecutive primes (7, 11; 1093, 1097) in the sequence.
%H A160024 Harvey P. Dale, <a href="/A160024/b160024.txt">Table of n, a(n) for n = 1..1000</a>
%e A160024 p = 3: 3^4 + 11^4 + 3^4 = 14803 = 113*131, so 3 is not in the sequence.
%e A160024 p = 7: 7^4 + 11^4 + 3^4 = 17123 is prime, so 7 is in the sequence.
%e A160024 p = 11: 11^4 + 11^4 + 3^4 = 29363 is prime, so 11 is in the sequence.
%e A160024 p = 13: 13^4 + 11^4 + 3^4 = 43283 is prime, so 13 is in the sequence.
%t A160024 Select[Prime[Range[200]],PrimeQ[#^4+14722]&] (* _Harvey P. Dale_, Apr 18 2023 *)
%o A160024 (Magma) [ p: p in PrimesUpTo(1110) | IsPrime(p^4+14722) ]; // _Klaus Brockhaus_, May 03 2009
%Y A160024 Cf. A158979, A159829, A160022.
%K A160024 easy,nonn
%O A160024 1,1
%A A160024 Ulrich Krug (leuchtfeuer37(AT)gmx.de), Apr 30 2009
%E A160024 Edited and extended beyond 461 by _Klaus Brockhaus_, May 03 2009