OFFSET
1,1
COMMENTS
A321504 lists numbers n such that k and k+1 both have at least 4 distinct prime factors, while A140078 lists numbers such that k and k+1 have exactly 4 distinct prime factors. This sequence is the complement of the latter in the former, it consists of terms with indices (124, 214, 219, 276, 321, 415, ...) of the former.
MATHEMATICA
aQ[n_]:=Module[{v={PrimeNu[n], PrimeNu[n+1]}}, Min[v]>3 && v!={4, 4}]; Select[Range[120000], aQ] (* Amiram Eldar, Nov 12 2018 *)
PROG
(PARI) is(n)=vecmin(n=[omega(n), omega(n+1)])>=4&&n!=[4, 4]
CROSSREFS
KEYWORD
nonn
AUTHOR
M. F. Hasler, Nov 12 2018
STATUS
approved