All pastes #2969835 Raw Edit

Something

public unlisted ruby v1 · immutable
#2969835 ·published 2015-04-09 13:21 UTC
rendered paste body
def sieve(n)  list = [*2..n]   p = 2   loop do    p1 = p     list.delete(p+=p1) until p >= n     if list.find{|x| x > p1}      p = list.find{|x| x > p1}     else      return list    end  endend