Question: The Collatz sequence starting from any integer N>0 is: If N is even, divide it by two, but if it is odd, multiply it by

The Collatz sequence starting from any integer N>0 is: If N is even, divide it by two, but if it is odd, multiply it by three and add one Keep on doing that until N is reduced to For example, starting from 196 we get 196, 98, 49, 148, 74, 37, 112, 56, 28, 14, 7, 22, 11, 34, 17, 52, 26, 13, 40, 20, 10, 5, 16, 8, 4, 2, 1 Your assignment - In BCPL, write a program that repeatedly asks the user to enter a value for N prints the collatz sequence starting from N, prints the length of that sequence Submit your code and a few sample runs
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
