Problem:
Question- Write a script that solves the following problems. For each problem, first print the problem number followed by the answer to make it easier to grade.
Be sure your script includes all the necessary code to produce the results.
(1) Which positive integer n 20; 000 has the longest hailstone sequence? The Python function len can be used to compute the length of a list. Note: The code will run faster if you do not print lots of things.
(2) How long is the hailstone sequence of the integer found in (1)?
(3) What is the largest integer in the hailstone sequence for the integer found in (1)?
Please describe hailstone sequence.