Skip to main content
deleted 147 characters in body
Source Link
emanresu A
  • 46.2k
  • 5
  • 112
  • 257

VyxalVyxal j, 108 bytes

∞'dǏG7<;?ẎλdǏG7<;ȯ 

Try it Online!Try it Online!

∞ # All positive integers ' ; # Filter by d λ  # Double (to handle 1, which hasFirst non primenumbers factors)where   ǏG dǏG # MaxMaximum of prime factors   7<  # Is lessLess than 7 ?Ẏ # First n 

Vyxal j, 10 bytes

∞'dǏG7<;?Ẏ 

Try it Online!

∞ # All positive integers ' ; # Filter by d  # Double (to handle 1, which has no prime factors)   ǏG  # Max of prime factors   7<  # Is less than 7 ?Ẏ # First n 

Vyxal j, 8 bytes

λdǏG7<;ȯ 

Try it Online!

λ  # First n numbers where dǏG # Maximum of prime factors 7< # Less than 7 
Source Link
emanresu A
  • 46.2k
  • 5
  • 112
  • 257

Vyxal j, 10 bytes

∞'dǏG7<;?Ẏ 

Try it Online!

∞ # All positive integers ' ; # Filter by d # Double (to handle 1, which has no prime factors) ǏG # Max of prime factors 7< # Is less than 7 ?Ẏ # First n