A script used to demonstrate the Collatz Conjecture. (http://en.wikipedia.org/wiki/Collatz_conjecture) This script takes a number, and checks if it is even or odd. If even, the number is divided by 2. If odd, the number is multiplied by 3 and then added 1. Repeating this process will always end up with the number eventually equaling 1.