Jump to content

Happy number

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by Lucas Brown (talk | contribs) at 00:21, 19 November 2008 (→‎Happy numbers in other bases). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Template:Distinguish2

A happy number is defined by the following process. Starting with any positive integer, replace the number by the sum of the squares of its digits, and repeat the process until the number equals 1 (where it will stay), or it loops endlessly in a cycle which does not include 1. Those numbers for which this process ends in 1 are happy numbers, while those that do not end in 1 are unhappy numbers.

Overview

More formally, given a number , define a sequence , , ... where is the sum of the squares of the digits of . Then is happy if and only if there exists i such that .

If a number is happy, then all members of its sequence are happy; if a number is unhappy, all members of its sequence are unhappy.

For example, 7 is happy, as the associated sequence is:

72 = 49
42 + 92 = 97
92 + 72 = 130
12 + 32 + 02 = 10
12 + 02 = 1.

The happy numbers below 500 are

1, 7, 10, 13, 19, 23, 28, 31, 32, 44, 49, 68, 70, 79, 82, 86, 91, 94, 97, 100, 103, 109, 129, 130, 133, 139, 167, 176, 188, 190, 192, 193, 203, 208, 219, 226, 230, 236, 239, 262, 263, 280, 291, 293, 301, 302, 310, 313, 319, 320, 326, 329, 331, 338, 356, 362, 365, 367, 368, 376, 379, 383, 386, 391, 392, 397, 404, 409, 440, 446, 464, 469, 478, 487, 490, 496. (sequence A007770 in the OEIS).

Sequence behavior

If is not happy, then its sequence does not go to 1. What happens instead is that it ends up in the cycle

4, 16, 37, 58, 89, 145, 42, 20, 4, ...

To see this fact, first note that if has digits, then the sum of the squares of its digits is at most . For and above,

so any number over 1000 gets smaller under this process. Once we are under 1000, the number for which the sum of squares of digits is largest is 999, and the result is 3 times 81, that is, 243.

  • In the range 100 to 243, the number 199 produces the largest next value, of 163.
  • In the range 100 to 163, the number 159 produces the largest next value, of 107.
  • In the range 100 to 107, the number 107 produces the largest next value, of 50.

Considering more precisely the intervals [244,999], [164,243], [108,163] and [100,107], we see that every number above 99 gets strictly smaller under this process. Thus, no matter what number we start with, we eventually drop below 100. An exhaustive search then shows that every number in the interval [1,99] is either happy or goes to the above cycle.

Happy primes

A happy prime is a happy number that is prime. The happy primes below 500 are

7, 13, 19, 23, 31, 79, 97, 103, 109, 139, 167, 193, 239, 263, 293, 313, 331, 367, 379, 383, 397, 409, 487 (sequence A035497 in the OEIS).

All numbers, and therefore all primes, of the form and are happy. To see this, note that these numbers yield values of either 12 + 02 + 02 + ... + 02 + 02 + 32 = 10 → 12 + 02 = 1 or 12 + 02 + 02 + ... + 02 + 02 + 92 = 82 → 82 + 22 = 68 → 62 + 82 = 100 → 12 + 02 + 02 = 1.

The palindromic prime 10150006 + 7426247×1075000 + 1 is also a happy prime with 150007 digits because the many 0's do not contribute to the sum of squared digits, and , which is a happy number. Paul Jobling discovered the prime in 2005.[1].

As of June 2007, the largest known happy prime and the twelfth largest known prime is 4847 × 23321063 + 1. The decimal expansion has 999744 digits: 1844857508...(999724 digits omitted)...2886501377. Richard Hassler and Seventeen or Bust discovered the prime in 2005.[2] [3] Jens K. Andersen identified it as the largest known happy prime in June 2007.

Happy numbers in other bases

The definition of happy numbers depends on the decimal (i.e., base 10) representation of the numbers. The definition can be extended to other bases.

To represent numbers in other bases, we may use a subscript to the right to indicate the base. For instance, represents the number 4, and

Then, it is easy to see that there are happy numbers in every base. For instance, the numbers

are all happy, for any base .

By a similar argument to the one above for decimal happy numbers, we can see that unhappy numbers in base lead to cycles of numbers less than . We can use the fact that if , then the sum of the squares of the base- digits of is less than or equal to

which can be shown to be less than . This shows that once the sequence reaches a number less than , it stays below , and hence must cycle or reach 1.

In base 2, all numbers are happy. All binary numbers larger than 10002 decay into a value equal to or less than 10002, and all such values are happy: The following four sequences contain all numbers less than :

Since all sequences end in 1, we conclude that all numbers are happy in base 2. This makes base 2 a happy base.

The only happy bases strictly less than 2400 are 2 and 4, yet more could exist outside this range. [citation needed] This result may easily be verified and improved upon by running the following code in Mathematica:

x=1;h={};i=0;Label[j];x++;Print[x];t=2;Label[k];If[t==x^2-1,Print[x];Print["Happy!"];i++;AppendTo[h,x];Goto[j],];t++;c=t;y=0;l={};Label[m];a=Floor[c/x^2];c=c-a*x^2;b=Floor[c/x];c=c-b*x;c=a^2+b^2+c^2;If[c==1,Goto[k],];y++;AppendTo[l,c];If[y>2*x,For[z=1,z<y,z++,If[c==lz,Goto[j],]],];Goto[m]

Origin

Happy numbers were brought to the attention of Reg Allenby[1], a British author and Senior Lecturer in pure mathematics at Leeds University, by his daughter. She had learned of them at school, but they "may have originated in Russia" (Guy 2004:§E34).

Popular culture

In the Doctor Who episode "42", a sequence of happy primes (313, 331, 367, 379) is used as a code for unlocking a sealed door on a spaceship about to collide with a sun.

Notes

References

  • Walter Schneider, Mathews: Happy Numbers.
  • Weisstein, Eric W. "Happy Number". MathWorld.
  • Happy Numbers at The Math Forum.