view Test.hs @ 4675:7e4b1fc344b4

<oerjan> addquote <ais523> wait, is Pluso basically a more limited version of Deadfish? <ais523> Deadfish minimization is not an area of esolang development I had really considered
author HackBot
date Fri, 20 Jun 2014 13:37:54 +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