Permutations by kt3k

i=1
while i<8**6:
 j='76%06o'%i;i+=7
 if len(set(j))>7:print' '.join(j[2:])

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

download

return to the top page