
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
@santi100a/collatz-conjecture
Advanced tools
Santi's Collatz Sequence Generator: See the 3x+1 of any natural!
This is a library that generates the Collatz sequence for any positive integer. Let $ n_0 $ be the initial number, a non-zero positive integer. The conjecture claims that the sequence
$$ n_k = \begin{cases} \frac 1 2 \cdot n_{k-1} & n_{k-1} \in {2, 4, 6, 8, \dots} \ 3\cdot n_{k-1} + 1 & n_{k-1} \in {1, 3, 5, 7, \dots} \end{cases} $$
converges eventually to the infinite loop $ {4, 2, 1, 4, 2, 1, \dots} $ for all natural numbers (integers strictly greater than zero). As of this writing (April 2024), this behavior hasn't been proven or disproven.
npm install @santi100a/collatz-conjectureyarn add @santi100a/collatz-conjecturepnpm install @santi100a/collatz-conjecturefunction collatzSequence(n: number): number[]; Calculates the Collatz sequence for a given number.
| Name | Type | Description | Optional? | Default |
|---|---|---|---|---|
n | number | The number to calculate the Collatz sequence for. | No | N/A |
// Import the collatzSequence function
const collatzSequence = require('@santi100a/collatz-conjecture');
// Example usage
const input = 5;
console.log(`Collatz sequence for input ${input}:`);
const sequence = collatzSequence(input);
console.log(sequence);
Wanna contribute? File an issue or pull request! Look at the contribution instructions and make sure you follow the contribution Code of Conduct.
FAQs
Santi's Collatz Sequence Generator: See the 3x+1 of any natural!
We found that @santi100a/collatz-conjecture demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.