OFFSET
1,1
COMMENTS
List of prime numbers that occur in pairs of the form {p, p+4} after the sequential removal, from a list of all the primes, of (1) the one pair of primes of the form {p, p+1}, (2) all remaining twin prime pairs {p, p+2}.
Conjecture: the sequence has infinitely many terms and the sum of their reciprocals converges.
The second half of the conjecture is correct. The first half is true on Dickson's conjecture (because, for example, it would show that there are infinitely many k such that 210k+127 and 210k+131 are both prime). - Charles R Greathouse IV, Nov 20 2016
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
PROG
(PARI) {
/* For biggest n allocatemem(max)*/
n=10^4-1;
v=vector(n, unused, 1);
for(i=2, sqrt(n),
if(v[i],
forstep(j=i^2, n, i, v[j]=0))
);
v[2]=0; v[3]=0;
for(i=5, n-2,
if(v[i]&&v[i+2],
v[i]=0; v[i+2]=0
)
);
for(i=5, n-4,
if(v[i]&&v[i+4],
print1(i", "i+4", ");
v[i]=0; v[i+4]=0;
)
)
}
(PARI) p=2; q=3; r=5; forprime(s=7, 1e3, if(r-q==4 && q-p>2 && s-r>2, print1(q", "r", ")); p=q; q=r; r=s) \\ Charles R Greathouse IV, Nov 19 2016
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Dimitris Valianatos, Nov 12 2016
STATUS
approved