A258578 Primes p such that difference between p and next prime after p is multiple of 6.
23, 31, 47, 53, 61, 73, 83, 131, 151, 157, 167, 173, 199, 211, 233, 251, 257, 263, 271, 331, 353, 367, 373, 383, 433, 443, 467, 503, 509, 523, 541, 557, 563, 571, 587, 593, 601, 607, 619, 647, 653, 661, 677, 727, 733, 751, 797, 941, 947, 971, 977, 991, 997
Offset: 1
Keywords
Examples
a(1)=23 because next prime after 23 is 29=23+6, a(13)=199 because next prime after 199 is 211=199+12, a(30)=523 because next prime after 523 is 541=523+18, a(90)=1669 because next term after 1669 is 1693=1669+24, a(199)=4297 because next prime after 4297 is 4327=4297+30.
Links
- Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
Select[Partition[Prime[Range[200]],2,1],Mod[#[[2]]-#[[1]],6]==0&][[All,1]] (* Harvey P. Dale, Jun 20 2019 *)
-
PARI
lista(nn) = forprime(p=2, nn, if (!((nextprime(p+1) - p) % 6), print1(p, ", "));); \\ Michel Marcus, Jun 04 2015
-
PARI
v=List();p=2; forprime(q=3,1e4,if((q-p)%6==0,listput(v,p));p=q); v \\ Charles R Greathouse IV, Jun 04 2015
Comments