A340154 Primes p such that p == 5 (mod 6) and p+1 is squarefree.
5, 29, 41, 101, 113, 137, 173, 257, 281, 317, 353, 389, 401, 461, 509, 569, 617, 641, 653, 677, 761, 797, 821, 857, 929, 941, 977, 1109, 1181, 1193, 1217, 1229, 1289, 1301, 1361, 1373, 1409, 1433, 1481, 1553, 1613, 1697, 1721, 1877, 1901, 1913, 1973, 2081, 2129
Offset: 1
Examples
5 is a term since it is prime, 5 == 5 (mod 6), and 5+1 = 6 = 2*3 is squarefree.
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
- Stuart Clary and Jacek Fabrykowski, Arithmetic progressions, prime numbers, and squarefree integers, Czechoslovak Mathematical Journal, Vol. 54, No. 4 (2004), pp. 915-927.
Programs
-
Mathematica
Select[Range[2000], Mod[#, 6] == 5 && PrimeQ[#] && SquareFreeQ[# + 1] &]
Comments