| 1 | def collatz_sequence(n): |
| 2 | """Collatz conjecture: start with any positive integer n.Next termis obtained from the previous term as follows: |
| 3 | if the previous term is even, the next term is one half the previous term. |
| 4 | If the previous term is odd, the next term is 3 times the previous term plus 1. |
nothing calls this directly
no test coverage detected