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!)
A240084 Primes p such that p^4-p^3-p^2-p-1 is prime. 0
3, 11, 17, 41, 59, 71, 101, 113, 179, 233, 293, 347, 389, 449, 461, 503, 521, 617, 641, 683, 797, 953, 1319, 1439, 1487, 1493, 1823, 1877, 1973, 2087, 2339, 2351, 2633, 2663, 2789, 2801, 2909, 2927, 2957, 2963, 2999, 3011, 3167, 3467, 3527, 3677, 3851, 3881, 3923 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
3^4-3^3-3^2-3-1 = 41 is prime. Thus, 3 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**4-p**3-p**2-p-1) and isprime(p)}
(PARI) s=[]; forprime(p=2, 4000, if(isprime(p^4-p^3-p^2-p-1), s=concat(s, p))); s \\ Colin Barker, Apr 01 2014
CROSSREFS
Cf. A173179.
Sequence in context: A023865 A024592 A203162 * A100567 A270225 A262275
KEYWORD
nonn
AUTHOR
Derek Orr, Mar 31 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 24 00:30 EDT 2024. Contains 371917 sequences. (Running on oeis4.)