2006-04-07 01:56
No Comments
Ever wanted to know the statistical distribution of digits in π?
Just in case:
$ wget -O - http://www.gutenberg.org/dirs/etext93/pimil10.txt | grep -v '[A-Za-z]' | sed -e 's/[^0-9]//g; s/./\0\n/g;' | sort | grep -v "^$" | uniq -c

Comments are closed for this post