A000217 by Trevor

def f(x,i=1):
\x09print x+i;
\x09if i<40:f(x+i,i+1)
f(0)

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

download

return to the top page