Question: Write a python program that reads an integer as input and prints the sequence starting with the integer entered. Format the output so that five

Write a python program that reads an integer as input and prints the sequence
starting with the integer entered. Format the output so that five integers, each
separated by a tab character, are printed per line. End the output with a tab
character.
1 The Challenge
Given a positive integer n, the following rules will always create a sequence that
ends with 1 :
If n is even, divide it by 2
If n is odd, multiply it by 3 and add 1(i.e.3n+1)
Continue until n is 1
2 Input
A positive integer
3 Output
A series of integers
Only five per row
Ending with the number 1
4 Example
 Write a python program that reads an integer as input and

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!