Collatz Parity by test

for i=256,-256,-1 do for j=1,64 do if(i%2<1)then io.write' 'i=i/2 else io.write'#'i=(3*i+1)/2 end end print'|'end

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page