https://github.com/aswitalski/prime-number-search
Prime Number Search
https://github.com/aswitalski/prime-number-search
Last synced: 3 months 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 (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-06-02T18:05:11.000Z (about 9 years ago)
- Last Synced: 2024-04-14T06:01:53.378Z (about 1 year 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
[](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
```