OFFSET
1,1
EXAMPLE
7933641735 is in the sequence as it starts a run of at least 4 consecutive integers each of which has exactly 6 distinct prime factors.
That is, each of 7933641735 = 3 * 5 * 23 * 83 * 461 * 601,
7933641735 + 1 = 7933641736 = 2^3 * 17 * 47 * 59 * 109 * 193,
7933641735 + 2 = 7933641737 = 7 * 29 * 31 * 41 * 97 * 317,
7933641735 + 3 = 2 * 3 * 11 * 89 * 563 * 2399 has 6 distinct prime factors.
PROG
(PARI) upto(n) = {my(res = List(), streak = 0); n+=3; forfactored(i = 1, n, if(omega(i[2]) == 6, streak++; if(streak >= 4, listput(res, i[1]-3)), streak = 0)); res}
CROSSREFS
KEYWORD
nonn
AUTHOR
David A. Corneth, Jul 24 2023
EXTENSIONS
More terms from Jinyuan Wang, Aug 12 2023
STATUS
approved