Number Sequence by NearO

f x=x:x+2:x+x+2:f(x+3)
main=mapM print$take 401$f 1

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

download

return to the top page