OFFSET
1,1
LINKS
K. D. Bajpai, Table of n, a(n) for n = 1..3700
EXAMPLE
5 is in the sequence because 5 is prime and 5^4 - 5^3 - 1 = 499 is also prime.
17 is in the sequence because 17 is prime and 17^4 - 17^3 - 1 = 78607 is also prime.
MAPLE
KD := proc() local a, b; a:= ithprime(n); b:= a^4-a^3-1; if isprime(b) then RETURN (a); fi; end: seq(KD(), n=1..400);
MATHEMATICA
c = 0; a = 2; Do[k = Prime[n]; If[PrimeQ[k^4 - k^3 - 1], c = c + 1; Print[c, " ", k]], {n, 100000}]; (* Bajpai *)
Select[Prime[Range[200]], PrimeQ[#^4 - #^3 - 1] &] (* Alonso del Arte, Feb 17 2014 *)
PROG
(PARI) s=[]; forprime(p=2, 2000, if(isprime(p^4-p^3-1), s=concat(s, p))); s \\ Colin Barker, Feb 17 2014
CROSSREFS
KEYWORD
nonn
AUTHOR
K. D. Bajpai, Feb 16 2014
STATUS
approved