Question: Write the function collatz(n). This takes as its input the start value of n and calculates the length of the Collatz sequence, starting with n.

Write the function collatz(n). This takes as its input the start value of n and calculates the length of the Collatz sequence, starting with n.

>>> collatz(12)

10

The function should receive an integer, generate the sequence, calculate its length, and then return this value. For example, for n = 12, it should generate [12, 6, 3, 10, 5, 16, 8, 4, 2, 1], calculate the length, and return 10.

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!