A Collatz sequence is the sequence where, for a given number n, the next number in the sequence is either n/2 if the number is even or 3n+1 if the number is odd. The sequence always terminates with 1.
So if
n = 13
then
c = [13 40 20 10 5 16 8 4 2 1]

Solution Stats

18615 Solutions

8490 Solvers

Last Solution submitted on Mar 03, 2026

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...