Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,879 questions

51,805 answers

573 users

How to calculate the Collatz sequence starting with 13 in Node.js

1 Answer

0 votes
function CalcCollatz(x) {
    if ((x & 1) != 0) {
        return x * 3 + 1;
    }
    return x / 2;
}

function PrintCollatzSequence(x) {
    console.log(x);
    
    while (x != 1) {
        x = CalcCollatz(x);
        console.log(x);
    }
}

const x = 13;

PrintCollatzSequence(x);




/*
run:

13
40 
20 
10 
5 
16 
8 
4 
2 
1 

*/

 



answered Nov 8, 2023 by avibootz
edited Nov 8, 2023 by avibootz

Related questions

...