Factoradic Counter by inaniwa

a(n,p){return n<p?n:a(n/p,p+1)*10+n%p;}main(i){for(;i--+1e3;)printf("%.d0\n",a(-i,2));}

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

download

return to the top page