view Test.hs @ 4416:0b2c37b2e7b5

<kmc> mv gistfile1.txt tmp/
author HackBot
date Sun, 09 Feb 2014 01:59:24 +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