A156620 Primes p such that p^2 - 2 is a 5-almost prime.
1201, 2999, 4001, 4273, 5009, 7151, 8467, 9769, 10427, 10937, 11701, 11897, 12011, 12113, 12323, 13339, 13681, 14087, 14563, 15187, 15277, 15809, 16139, 16699, 17209, 17383, 17483, 17623, 18757, 19051, 19267, 19697, 20107, 20129, 20297
Offset: 1
Keywords
References
- H. Halberstam and H. E. Richert, Sieve Methods, Academic Press, NY, 1974.
- P. Ribenboim, The Little Book of Big Primes, Springer-Verlag, NY, 1991, p. 184.
- G. J. Rieger, On polynomials and almost-primes, Bull. Amer. Math. Soc., 75 (1969), 100-103.
Programs
-
Mathematica
Select[Prime[Range[5000]],PrimeOmega[#^2-2]==5&] (* Harvey P. Dale, Jul 11 2014 *)
-
PARI
forprime(p=2, prime(2500), if(bigomega(p^2-2)==5, print1(p,", ")))
Comments