login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A236068
Primes p such that f(f(p)) is prime, where f(x) = x^2 + 1.
2
3, 5, 13, 43, 47, 127, 263, 277, 293, 337, 347, 397, 443, 467, 487, 503, 577, 593, 607, 673, 727, 733, 773, 857, 887, 907, 1153, 1427, 1487, 1567, 1583, 1637, 1777, 2003, 2213, 2243, 2477, 2503, 2557, 2633, 2687, 2777
OFFSET
1,1
LINKS
FORMULA
a(n) = (A235053(n)-1)^(1/2).
EXAMPLE
47 is prime and (47^2+1)^2+1 is also prime. So, 47 is a member of this sequence.
MATHEMATICA
Select[Prime[Range[500]], PrimeQ[(#^2+1)^2+1]&] (* Harvey P. Dale, Dec 20 2021 *)
PROG
(Python)
import sympy
from sympy import isprime
{print(p) for p in range(10**4) if isprime(p) and isprime((p**2+1)**2+1)}
(PARI) isok(p) = isprime(p) && (q = p^2+1) && isprime(q^2+1); \\ Michel Marcus, Jan 19 2014
CROSSREFS
Cf. A235053.
Sequence in context: A188583 A259932 A178432 * A057188 A128548 A321358
KEYWORD
nonn
AUTHOR
Michel Marcus and Derek Orr, Jan 19 2014
STATUS
approved