Collatz Parity by recursive

class P{static void Main(){for(int n=257,c,m;n-->-256;){var s="";for(c=n;s.Length<64;c=c*m+(c+m)/2)s+=" #"[m=c&1];System.Console.Write(s+"|\n");}}}

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

download

return to the top page