Find the word definition

Wiktionary
sieve of eratosthenes

n. (context mathematics English) An ancient algorithm for finding prime numbers that works by discarding multiples from a list of potential primes.

Wikipedia
Sieve of Eratosthenes

In mathematics, the sieve of Eratosthenes (, kóskinon Eratosthénous), one of a number of prime number sieves, is a simple, ancient algorithm for finding all prime numbers up to any given limit. It does so by iteratively marking as composite (i.e., not prime) the multiples of each prime, starting with the multiples of 2.

The multiples of a given prime are generated as a sequence of numbers starting from that prime, with constant difference between them that is equal to that prime. This is the sieve's key distinction from using trial division to sequentially test each candidate number for divisibility by each prime.

The sieve of Eratosthenes is one of the most efficient ways to find all of the smaller primes. It is named after Eratosthenes of Cyrene, a Greek mathematician; although none of his works have survived, the sieve was described and attributed to Eratosthenes in the Introduction to Arithmetic by Nicomachus.

The sieve may be used to find primes in arithmetic progressions.