view Test.hs @ 4598:1bc67ded06c4

<oerjan> mv paste.2 bin/paste; rm paste.1
author HackBot
date Sun, 20 Apr 2014 00:49:11 +0000
parents 7f957c1f4661
children
line wrap: on
line source

import Data.List(inits);main = let p = 1 : zipWith (+) (map (*4) p) (map (sum . zipWith (*) p . reverse) (inits p)) in print $ p !! 1000