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!)
A236168 Primes p such that p^3 - p - 1 is prime. 2
2, 3, 11, 23, 29, 31, 41, 59, 71, 113, 151, 163, 191, 239, 241, 269, 359, 431, 433, 499, 503, 521, 541, 563, 661, 683, 701, 751, 773, 829, 883, 983, 1039, 1259, 1483, 1499, 1511, 1549, 1571, 1609, 1693, 1721, 1759, 1913 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Primes in A126421.
LINKS
EXAMPLE
269 is prime and 269^3 - 269 - 1 is also prime. So, 269 is a member of this sequence.
MATHEMATICA
Select[Prime[Range[300]], PrimeQ[#^3-#-1]&] (* Harvey P. Dale, Nov 17 2014 *)
PROG
(Python)
import sympy
from sympy import isprime
{print(p) for p in range(10**4) if isprime(p) and isprime(p**3-p-1)}
(PARI)
s=[]; forprime(p=2, 2000, if(isprime(p^3-p-1), s=concat(s, p))); s \\ Colin Barker, Jan 20 2014
CROSSREFS
Cf. A126421.
Sequence in context: A229805 A104075 A339753 * A235634 A070174 A320393
KEYWORD
nonn
AUTHOR
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 23 13:51 EDT 2024. Contains 371914 sequences. (Running on oeis4.)