Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aswitalski/prime-number-search
Prime Number Search
https://github.com/aswitalski/prime-number-search
Last synced: about 1 month ago
JSON representation
Prime Number Search
- Host: GitHub
- URL: https://github.com/aswitalski/prime-number-search
- Owner: aswitalski
- Created: 2016-05-30T07:19:24.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-06-02T18:05:11.000Z (over 8 years ago)
- Last Synced: 2024-04-14T06:01:53.378Z (10 months ago)
- Language: JavaScript
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# prime-number-search
[![Build Status](https://snap-ci.com/aswitalski/prime-number-search/branch/master/build_image)](https://snap-ci.com/aswitalski/prime-number-search/branch/master)
A just-for-fun prime number search mechanism utilizing own crude math algorithms.
It operates on strings representing decimal numbers to allow finding numbers exceeding max safe integer value in JavaScript (9007199254740991).
Of course this is just theoretical, as in practice it would just take ages to do so :)### Usage
Just run the main script with a single parameter indicating how many prime numbers should be found, for example:
```
node . 100
```