Skip to content

A simple Java application to find information about a given Collatz Conjecture (also known as "the 3x+1 Problem") sequence of numbers.

Notifications You must be signed in to change notification settings

toydotgame/collatz-sequence-generator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 

Repository files navigation

Collatz Sequence Generator

This is a simple program that I made as a proof of concept and simple introduction to the Collatz Conjecture (also known as the 3x+1 Problem).

Use

Requirements

  • Java (>= 1.8.0_292)

Running

Download a JAR from the Releases section, open a terminal in your download directory, and run this:

java -jar Collatz.jar

Configuration

There are three options available currently:

Option Name Options Description
Show calculation steps? y or n Show each individual number in the sequence of numbers calculated. If n is chosen, stats will be shown at the end about sequence length, and numbers of odd and even numbers.
Print equations? y or n If a number is odd, 3 * x + 1 = y is printed; and if even x / 2 = y is printed. The equations printed may differ from how the numbers themselves are internally calculated, but both the output and the internals of this program follow the rules of the Collatz Conjecture exactly.
Say if a number is odd or even? y or n Adds a prefix to the start of each line saying the odd/evenness of the previous number, and the new number that has been calculated [according to the rules].

About

A simple Java application to find information about a given Collatz Conjecture (also known as "the 3x+1 Problem") sequence of numbers.

Topics

Resources

Stars

Watchers

Forks

Languages