OFFSET
1,1
COMMENTS
Sequence contains many pairs of twin primes. More exactly, denote A(x), t(x),T(x) the counting functions of this sequence, twin primes in this sequence and all twin primes correspondingly. In supposition of the infinitude of twin primes, the very plausible conjectures are: (1) for x tends to infinity, t(x)~T(x) and (2) for x >= 31, t(x)/A(x) > T(x)/pi(x).
Indeed (heuristic arguments), the middles of twin pairs (beginning with the second pair) belong to progression {6*n}. Let us choose randomly n. The probability that n has prime divisors 2,3 only is, as well known, O((log n)^2/n), i.e. it is quite natural to conjecture that almost all twin pairs are in the sequence. Besides, it is natural to conjecture that the inequality is true as well, since A(x)<pi(x).
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..10000
MATHEMATICA
Select[Prime[Range[100]], PrimeNu[#-1]>2||PrimeNu[#+1]>2&] (* Harvey P. Dale, May 15 2019 *)
PROG
(PARI) lista(nn) = {forprime(p=2, nn, if ((omega(p-1) > 2) || (omega(p+1) > 2), print1(p, ", ")); ); } \\ Michel Marcus, Feb 06 2016
CROSSREFS
KEYWORD
nonn
AUTHOR
Vladimir Shevelev, Dec 23 2010
STATUS
approved