I've recently taken to learning me a haskell and have been having a pretty good time. I've been working through some Project Euler problems to get a grip of the syntax and have been reviewing the solutions posted here http://www.haskell.org/haskellwiki/Euler_problems/1_to_10 as a learning tool. Though I have found myself unable to wrap my head around the solution posted for problem #3:
-- Find the largest prime factor of 317584931803.
primes = 2 : filter ((==1) . length . primeFactors) [3,5..]
primeFactors n = factor n primes
where
factor n (p:ps)
| p*p > n = [n]
| n `mod` p == 0 = p : factor (n `div` p) (p:ps)
| otherwise = factor n ps
problem_3 = last (primeFactors 317584931803)
I can't figure out for the life of me how it works. primes and primeFactors seem to be calling eachother to build their own lists and trying to follow it pickles my brain. Any one know a good blog post about this solution or want to write an explanation about it here?

fibs = 1 : 1 : zipWith (+) fibs (tail fibs)? Do you understand that? That's a good place to start with recursively defined data. – rampion Feb 7 '12 at 18:58