Here is JavaScript code to generate a list of an arbitrarily large number of prime numbers.īecause this is JavaScript, you can even open up your browser's JavaScript console and run this code for yourself. How to Create a List of Primes Using the Sieve of Eratosthenes An illustration of how the Sieve of Eratosthenes Works step-by-step. I assembled this list for my own uses as a programmer, and wanted to share it with you.īefore I show you the list, here's how to generate a list of prime numbers of your own using a few popular languages. 1) Every prime number (except 2 and 3) can be written in the form of 6n + 1 or 6n 1.
Here's a list of all 2,262 prime numbers between zero and 20,000. There are 25 prime numbers between 1 and 100.