login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A119570
Primes p such that p^2 - p - 1 is not prime.
0
2, 13, 19, 23, 37, 41, 43, 53, 59, 73, 79, 83, 89, 103, 107, 109, 113, 137, 151, 157, 163, 167, 173, 179, 191, 193, 199, 211, 223, 227, 229, 233, 239, 251, 257, 263, 271, 277, 281, 283, 293, 311, 313, 317, 337, 347, 349, 353, 367, 373, 383, 389, 401, 431, 433
OFFSET
1,1
MATHEMATICA
Select[Prime[Range[250]], Not[PrimeQ[ #^2-#-1]]&]
PROG
(Magma) [p: p in PrimesUpTo(700)| not IsPrime(p^2-p-1)] // Vincenzo Librandi, Jan 29 2011
CROSSREFS
Cf. A091567 (Primes p such that p^2-p-1 is prime),
A091568 (Primes of the form p^2-p-1, where p is prime).
Sequence in context: A020585 A038943 A019343 * A018485 A097234 A122139
KEYWORD
nonn
AUTHOR
Alexander Adamchuk, Jul 27 2006
STATUS
approved