A364265 The first term in a chain of at least 3 consecutive numbers each with exactly 6 distinct prime factors (i.e., belonging to A074969).
323567034, 431684330, 468780388, 481098980, 577922904, 639336984, 715008644, 720990620, 726167154, 735965384, 769385252, 808810638, 822981560, 831034918, 839075510, 847765554, 879549670, 895723268, 902976710, 903293468, 904796814, 918520420, 940737005, 944087484, 982059364
Offset: 1
Keywords
Links
- David A. Corneth, Table of n, a(n) for n = 1..10000
Crossrefs
Cf. A364266 (5 distinct factors).
Programs
-
Maple
omega := proc(n) nops(numtheory[factorset](n)) ; end proc: for k from 1 do if omega(k) = 6 then if omega(k+1) = 6 then if omega(k+2) = 6 then print(k) ; end if; end if; end if; end do:
-
PARI
upto(n) = {my(res = List(), streak = 0); forfactored(i = 2, n, if(#i[2]~ == 6, streak++; if(streak >= 3, listput(res, i[1] - 2)), streak = 0)); res} \\ David A. Corneth, Jul 18 2023
Extensions
More terms from David A. Corneth, Jul 18 2023
Comments