Define the operation "HOTPO" as follows, for positive integers.
If n is odd and greater than 1, form 3n+1
If n is even, form n/2
If n = 1, terminate the process
Example:
It takes 5 operations for HOTPO (5) to terminate.
HOTPO (5) = 16
HOTPO (16) = 8
HOTPO (8) = 4
HOTPO (4) = 2
HOTPO (2) = 1 (stop)
How many operations does it take for HOTPO(17) to terminate?
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
HOTPO (17) = 52
HOTPO (52) = 26
HOTPO (26) = 13
HOTPO (13) = 40
HOTPO (40) = 20
HOTPO (20) = 10
HOTPO (10) = 5
HOTPO (5) = 16
HOTPO (16) = 8
HOTPO (8) = 4
HOTPO (4) = 2
HOTPO ( 2) = 1 (stop)
Try tracking HOTPO (27). Bring a good-sized sheet of paper.