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!)
A236069 Primes p such that f(f(p)) is prime where f(x) = x^4 + 1. 0
3, 79, 83, 107, 211, 401, 491, 881, 1013, 1061, 1367, 1637, 1669, 1811, 2029, 2309, 2399, 2459, 2671, 2713, 2963, 3109, 3203, 3407, 3593, 3709, 3733, 3929, 4219, 4457, 4513, 4639, 4703, 4729, 5417, 5641, 6047, 6113 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
a(n) = (A235982(n)-1)^(1/4).
EXAMPLE
881 is prime and (881^4+1)^4+1 is also prime. So, 881 is a member of this sequence.
PROG
(Python)
import sympy
from sympy import isprime
{print(p) for p in range(10**4) if isprime(p) and isprime((p**4+1)**4+1)}
(PARI) isok(p) = isprime(p) && (q = p^4+1) && isprime(q^4+1); \\ Michel Marcus, Jan 19 2014
CROSSREFS
Cf. A235982.
Sequence in context: A092416 A069839 A222192 * A364947 A064456 A347165
KEYWORD
nonn
AUTHOR
Michel Marcus and Derek Orr, Jan 19 2014
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 17 22:23 EDT 2024. Contains 371767 sequences. (Running on oeis4.)