Recursive Function by Hendrik

f={i->i>2?f(i-1)*f(i-3)+1:i}
print f(35g)

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

download

return to the top page