/Collatz_Conjecture_Calculator

The Collatz conjecture is a conjecture in mathematics that concerns a sequence defined as follows: start with any positive integer n. Then each term is obtained from the previous term as follows: if the previous term is even, the next term is one half the previous term. If the previous term is odd, the next term is 3 times the previous term plus 1. The conjecture is that no matter what value of n, the sequence will always reach 1. This is a very basic algorithm written in Java that takes an inputed positive integer and outputs each step of the conjecture until the final number is equivalent to 1.

Primary LanguageJava

Stargazers

No one’s star this repository yet.