Question: DO NOT ALLOW TO IMPORT ANY INBUILT LIBRARY Write a simple Python program that generates a sequence, following the given rule: a. Take any integer
DO NOT ALLOW TO IMPORT ANY INBUILT LIBRARY


Write a simple Python program that generates a sequence, following the given rule: a. Take any integer number, n b. If n is even, then divide it by 2 C. If n is odd, then multiply it by 3 and add 1 d. Repeat the step (b) and (c) indefinitely or when it reaches 1. You need to find the largest value ever encountered in the sequence and also the total number produced in the sequence. Sample Test Data: Please enter the starting number: 11 Sample Output: The sequence of numbers are as follows: 11 34 17 52 26 13 40 20 10 5 16 8 4 2 1 The largest value encountered in the sequence is: 52 The total number produced in the sequence is: 14 Note that when you are displaying the output, each row can have a maximum of 10 numbers
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
