view Test.hs @ 4480:90bb74430c08

<elliott> delquote 64
author HackBot
date Wed, 19 Feb 2014 23:50:03 +0000
parents 1baee8e6ee55
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