This project was designed to find happy numbers in a fast and accurate manner. In turbo mode, it takes a fraction of a second to find out if 642433964243390 is happy (it is not, but 34343979773434979773 is). If it finds a happy number, the screen will turn green. If it's unhappy, it will turn red. What is a Happy Number? ------------------------------------- The happiness of a number can be found by adding up all of the digits raised by 2, then continuing the process with your sum until it equals 1 (happy), 4, (unhappy), or the cycle never ends (unhappy). For Example: 49 16 + 81 = 97 81 + 49 = 130 1 + 9 + 0 = 10 1 + 0 = 1 49 is a happy number. This generator does just that, but faster.