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.

40,026 questions

51,982 answers

573 users

How to calculate the Collatz sequence starting with 13 in Java

1 Answer

0 votes
public class MyClass {
    // Collatz Sequence Example:
    // 13 - 40 - 20 - 10 - 5 - 16 - 8 - 4 - 2 - 1
    
    private static long CalcCollatz(long x) {
    	// if (number is odd) return x*3 + 1
    	// if (number is even) return x/2 
    	if ((x & 1) != 0) { // odd
    		return x * 3 + 1;
    	}
    	return x / 2; // even
    }
    
    private static void PrintCollatzSequence(long x) {
    	System.out.print(x + " ");

    	while (x != 1) {
    		x = CalcCollatz(x);
    		System.out.print(x + " ");
    	}
    }

    public static void main(String args[]) {
        long x = 13;

	    PrintCollatzSequence(x);
    }
}





/*
run:
    
13 40 20 10 5 16 8 4 2 1 
 
*/

 



answered Nov 7, 2023 by avibootz

Related questions

1 answer 111 views
1 answer 149 views
1 answer 104 views
1 answer 112 views
1 answer 103 views
...