OFFSET
1,1
COMMENTS
Goldston et al. (2011) proved that this sequence is infinite.
Some consecutive terms are (81548, 81549), (141218, 141219), (179828, 179829). - David A. Corneth, Jul 29 2020
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
Daniel A. Goldston, Sidney W. Graham, Janos Pintz, and Cem Y. Yıldırım, Small gaps between almost primes, the parity problem, and some conjectures of Erdős on consecutive integers, International Mathematics Research Notices, Vol. 2011, No. 7 (2011), pp. 1439-1450, preprint, arXiv:0803.2636 [math.NT], 2006.
EXAMPLE
11780 is a term since 11780 = 2^2 * 5 * 19 * 31 and 11781 = 3^2 * 7 * 11 * 17.
MATHEMATICA
seqQ[n_] := Sort[FactorInteger[n][[;; , 2]]] == {1, 1, 1, 2}; Select[Range[10^5], seqQ[#] && seqQ[# + 1] &]
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar, Jul 28 2020
STATUS
approved