Recursive Function by doodoori2

f=lambda x:x>2and f(x-1)*f(x-3)+1or x&1
print f(37)

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

download

return to the top page