196 algorithm by z423x5c6

f=lambda x:x if x==x[::-1]else f(str(int(x)+int(x[::-1])))
for i in range(1,196):print(f(str(i)))

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

download

return to the top page