UNPKG

theorem.js

Version:

A Math library for computation in JavaScript

11 lines (10 loc) 113 B
* collatz(n) { while (n != 1) { if(n % 2 == 0) { n = n / 2 } else { n = 3 * n + 1 } yield n; } }