0.0
No commit activity in last 3 years
No release in over 3 years
command line tool that prints a table of the first N prime numbers, (e.g. 2,3,5 x 2,3,5)
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies
 Project Readme

A small ruby app that prints a multiplication table of prime numbers.

It uses a simplistic incremental Sieve of Eratosthenes algorithm to find primes based on this [academic paper].

I build and deploy my gems using Snap:

Build Status

Instructions

gem install primetable

primetable 10

This will print the first 10 prime numbers. You can try raising that number and seeing how far you can go.

Interesting Prime Number Resources

[Visualization of primes on the number line] (http://www.fastcodesign.com/1670397/infographic-visualizing-prime-numbers-for-people-who-suck-at-math)

Great Internet Mersenne Prime Search - use your spare CPU cycles to find the biggest primes