collatz
Collatzの予想 (角谷予想)
任意の正の整数nに対する操作
この操作を繰り返すと
どんな初期値から始めても、有限回の操作のうちに必ず1に到達する
code:mod.ts
//import {args} from 'deno'
const args = Deno.args
if (args.length !== 1) throw new Error()
while (n > 1) {
console.log(n)
if (n % 2 === 0) {
n = n / 2
} else {
n = 3 * n + 1
}
}
console.log(n)