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”).

A119609
p^2-p-1 that is not prime, where p is prime.
1
1, 155, 341, 505, 1331, 1639, 1805, 2755, 3421, 5255, 6161, 6805, 7831, 10505, 11341, 11771, 12655, 18631, 22649, 24491, 26405, 27721, 29755, 31861, 36289, 37055, 39401, 44309, 49505, 51301, 52211, 54055, 56881, 62749, 65791, 68905, 73169
OFFSET
1,2
COMMENTS
All prime factors of a(n) {5,11,19,29,31,41,59,61,..} belong to A038872 Primes congruent to {0, 1, 4} mod 5. Also odd primes where 5 is a square mod p. A091568 Primes of the form p^2-p-1, where p is prime. A091567 Primes p such that p^2-p-1 is prime.
LINKS
MATHEMATICA
lst = {}; Do[If[PrimeQ[p] && ! PrimeQ[p^2 - p - 1], AppendTo[lst, p^2 - p -1]], {p, 300}]; lst (* Vincenzo Librandi, Sep 08 2012 *)
PROG
(Magma) [q: p in PrimesUpTo(300) | IsPrime(p) and not IsPrime(q) where q is p^2 - p - 1] // Vincenzo Librandi, Sep 08 2012
CROSSREFS
KEYWORD
nonn
AUTHOR
Alexander Adamchuk, Jul 27 2006
STATUS
approved