--OVERVIEW-- The Collatz (aka 3x+1) conjecture, created by Lothar Collatz, is one of the most famous unsolved mathematical problems. A starting number is chosen. If the starting number is even: divide by 2 If the starting number is odd: multiply by 3, then add 1 The process is repeated for the new number reached. The question is: will every input (integer, one or greater) number reach 1? --THIS PROJECT-- Input a number. Only integer values greater than or equal to 1! Then the list will show the sequence. --CREDITS-- Thanks to Veritasium for his cool video on this (https://youtu.be/094y1Z2wpJg?si=CA_Q2uDczJgPK1_b) and the thumbnail.