257 by uru

var i,a,m:word=2;s:string;begin
repeat
a:=257;s:="";repeat
m:=a mod i;s:=chr(48+m+7*ord(m>9))+s;a:=a div i
until
a=0;writeln(s);inc(i)until
i=37end.

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

download

return to the top page