A088983 Numbers n such that each of the 6 consecutive numbers n through n+5 has exactly two distinct prime factors.
91, 141, 142, 143, 212, 213, 214, 323, 324, 2302, 2303
Offset: 1
Links
- Roger B. Eggleton and James A. MacDougall, Consecutive integers with equally many principal divisors, Math. Mag. 81 (2008), 235-248.
Programs
-
Mathematica
Select[Range[3000], AllTrue[# + Range[0, 5], Length@FactorInteger[#] == 2 &] &] (* Giovanni Resta, May 09 2017 *)
Extensions
Definition simplified by Roger Eggleton via Jason Kimberley, Jul 12 2017
Comments