Collatz Parity by Hendrik

class X{static void Main(){for(int i=257;--i>-257;)for(int j=65,x=i;j-->0;x=x+(x&1)*(x-~x)>>1)System.Console.Write(j>0?" #"[x&1]+"":"|\n");}}

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

download

return to the top page