https://github.com/make-github-pseudonymous-again/js-integer-sequences
:shell: Integer sequences for JavaScript
https://github.com/make-github-pseudonymous-again/js-integer-sequences
computer-science integer-sequences javascript js mathematics
Last synced: 3 months ago
JSON representation
:shell: Integer sequences for JavaScript
- Host: GitHub
- URL: https://github.com/make-github-pseudonymous-again/js-integer-sequences
- Owner: make-github-pseudonymous-again
- License: agpl-3.0
- Created: 2017-04-20T08:10:55.000Z (about 8 years ago)
- Default Branch: main
- Last Pushed: 2023-01-06T04:34:02.000Z (over 2 years ago)
- Last Synced: 2025-03-25T20:04:13.157Z (3 months ago)
- Topics: computer-science, integer-sequences, javascript, js, mathematics
- Language: JavaScript
- Homepage: https://aureooms.github.io/js-integer-sequences
- Size: 1.95 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[@aureooms/js-integer-sequences](https://make-github-pseudonymous-again.github.io/js-integer-sequences)
==
Integer sequences for JavaScript.
See [docs](https://make-github-pseudonymous-again.github.io/js-integer-sequences/index.html).
Parent is [@aureooms/js-algorithms](https://github.com/make-github-pseudonymous-again/js-algorithms).```js
import { list , map } from '@aureooms/js-itertools' ;
import * as integer from '@aureooms/js-integer' ;let F = new Fibonacci( integer ) ;
list( map ( integer.stringify , F.range( 10 ) ) ) ; // 0 1 1 2 3 5 8 13 21 34
```[](https://raw.githubusercontent.com/make-github-pseudonymous-again/js-integer-sequences/main/LICENSE)
[](https://www.npmjs.org/package/@aureooms/js-integer-sequences)
[](https://travis-ci.org/make-github-pseudonymous-again/js-integer-sequences/branches)
[](https://david-dm.org/make-github-pseudonymous-again/js-integer-sequences)
[](https://david-dm.org/make-github-pseudonymous-again/js-integer-sequences?type=dev)
[](https://github.com/make-github-pseudonymous-again/js-integer-sequences/issues)
[](https://www.npmjs.org/package/@aureooms/js-integer-sequences)[](https://codeclimate.com/github/make-github-pseudonymous-again/js-integer-sequences/issues)
[](https://codeclimate.com/github/make-github-pseudonymous-again/js-integer-sequences/trends/churn)
[](https://codecov.io/gh/make-github-pseudonymous-again/js-integer-sequences)
[](https://codeclimate.com/github/make-github-pseudonymous-again/js-integer-sequences/trends/technical_debt)
[](https://make-github-pseudonymous-again.github.io/js-integer-sequences/source.html)
[](https://bundlephobia.com/result?p=@aureooms/js-integer-sequences)## Children
- [@aureooms/js-fibonacci](https://github.com/make-github-pseudonymous-again/js-fibonacci): Fibonacci numbers for JavaScript.