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!)
A237445 Primes p such that f(f(p)) is prime, where f(x) = x^4 + x^3 + x^2 + x + 1 = A053699(x). 0
1451, 2351, 2381, 2791, 5531, 5981, 7841, 8821, 10091, 10501, 11411, 11701, 12011, 13241, 15271, 15331, 16691, 17231, 18341, 18671, 19891, 20981, 21911, 23071, 23131, 23561, 23741, 24061, 25321, 27361, 29221, 30851, 30941, 31271, 32141, 33931 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
All numbers are congruent to 1 mod 10.
LINKS
EXAMPLE
1451 is prime and f(f(1451)) = 387147304469214558406348338836395337085545589397781 is prime. Thus, 1451 is a member of this sequence.
PROG
(Python)
import sympy
from sympy import isprime
{print(n) for n in range(10**5) if isprime(n) and isprime((n**4+n**3+n**2+n+1)**4+(n**4+n**3+n**2+n+1)**3+(n**4+n**3+n**2+n+1)**2+(n**4+n**3+n**2+n+1)+1)}
(PARI) f(x)=x^4+x^3+x^2+x+1; forprime(p=1, 35000, ispseudoprime(f(f(p)))&&print1(p", ")) \\ M. F. Hasler, Feb 09 2014
CROSSREFS
Sequence in context: A242038 A045099 A325883 * A122421 A187992 A151722
KEYWORD
nonn
AUTHOR
Derek Orr, Feb 08 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 25 07:07 EDT 2024. Contains 371964 sequences. (Running on oeis4.)