OFFSET
1,1
COMMENTS
The asymptotic density of this sequence is d * Sum_{primes p_0 != p_1} Product_{i=0..1} (Sum_{j>=0} (1/p_i^(3*2^j-1) - 2/p_i^(3*2^j)))/(1 - 2/p_i^2 + Sum_{j>=2} (2/p_i^(2^j-1) - 1/p_i^(2^j))) = 0.04358..., where d = A388069 (Tao and Teräväinen, 2025).
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
Terence Tao and Joni Teräväinen, Quantitative correlations and some problems on prime factors of consecutive integers, arXiv:2512.01739 [math.NT], 2025. See p. 7.
MATHEMATICA
pow23Q[n_] := n == 3 * 2^IntegerExponent[n, 2]; q[n_] := q[n] = pow23Q[DivisorSigma[0, n]]; Select[Range[1500], q[#] && q[# + 1] &]
PROG
(PARI) is(k) = {my(d = numdiv(k)); d >> valuation(d, 2) == 3; }
list(kmax) = {my(is1 = is(1), is2); for(k = 2, kmax+1, is2 = is(k); if(is1 && is2, print1(k-1, ", ")); is1 = is2); }
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Amiram Eldar, Dec 08 2025
STATUS
approved
