For example, here's Ramanujan's sum for Π which, after just 3 terms, overwhelms IEEE 754 double precision. Modern discoveries, like spigot algorithms on non-decimal bases, can find a given individual digit in constant time. But for fully expanding Π, no one has surpassed Ramanujan's expression: both the Chudnovsky brothers and Yasumasa Kanada adapted it to achieve their milestone calculations.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Prelude hiding (pi) | |
pi = recip . sum $ map f [0..2] | |
f k = a * (b / c) | |
where | |
a = (2 * sqrt 2) / 9801 | |
b = fac (4 * k) * (1103 + 26390 * k) | |
c = fac k**4 * (396**(4 * k)) | |
fac n = product [1..n] |