Bitwise Sequence by recursive

s=v="0"*8
exec'print v;i=v.rfind("10");v=((v[:i]+"0")*(i>=0)+"1"*-~v[i+1:].count("1")+s)[:8];'*256

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

download

return to the top page