
Number Chain
Problem
A chain of numbers is made by using the following rule:
Divide by 5 if the number is divisible by 5 otherwise add 4.
For example, starting with the number 7,

It can be seen that the chain has returned to 7.
Which positive integer below 10 will never come back to itself?
Solution
Listing the chain for each starting number:
15
1
26
10
2
37
11
15
3
48
12
16
20
4
Having worked through the starting numbers 1-4, we can see what happens to 5-8. The only number that has not appeared is 9:
913
17
21
25
5
1
5
9 is unusual as it works its way into the 1,5 chain, never returning to itself.
Which numbers do not come back to themselves in general?
What happens if you change the rule from +4/÷5?
Hint: Try +3/÷4 and +2/÷3 to start with.
Problem ID: 80 (Oct 2002) Difficulty: 1 Star
RSS
Show Solution
Hide Solution