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!)
A160858 Primes p such that p^3-p^2-1 and p^3-p^2+1 are prime 2
2, 3, 13, 541, 859, 1279, 1459, 1951, 2239, 2971, 3181, 4003, 4129, 6343, 7393, 8053, 9043, 9463, 10501, 10831, 12433, 14083, 14731, 15073, 15991, 16603, 17443, 17491, 17761, 18493, 19861, 20173, 20323, 20929, 21391, 22963, 23071 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
3^3-3^2=27-9=18-+1=primes
MATHEMATICA
lst={}; Do[p=Prime[n]; a=p^2; b=p^3; c=b-a; If[PrimeQ[c-1]&&PrimeQ[c+1], AppendTo[lst, p]], {n, 2*7!}]; lst
Select[Prime[Range[3000]], AllTrue[#^3-#^2+{1, -1}, PrimeQ]&] (* The program uses the AllTrue function from Mathematica version 10 *) (* Harvey P. Dale, May 20 2018 *)
PROG
(PARI) forprime(p=2, 1e6, if(isprime(p^3-p^2-1)&&isprime(p^3-p^2+1), print1(p", ")))
CROSSREFS
Subset of A045331.
Sequence in context: A270314 A132484 A258357 * A062648 A094003 A119987
KEYWORD
nonn
AUTHOR
EXTENSIONS
Program, cross-reference, and editing by Charles R Greathouse IV, Nov 02 2009
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 01:06 EDT 2024. Contains 371964 sequences. (Running on oeis4.)