Recursive Function by Hendrik

f(n)=if(n>1,f(n-1)*f(n-3)+1,n)
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