LINK TO FILE | ADDED | SIZE | DESCRIPTION |
---|---|---|---|
Factorials, integer format | February 2, 2010 | 24K | 0! through 169! |
Factorials, scientific format | February 2, 2010 | 1.56M | 0! through 5015!, only first 300 digits after 187! |
Fibonacci, integer format | February 2, 2010 | 228K | F(0) through F(1437) |
Powers of 2, integer format | February 2, 2010 | 158K | 20 through 21000 |
Square roots, normal format | February 2, 2010 | 304K | Root(0) through Root(1000), 300 decimal places, but I don't trust the last 3-5 places. |
ArcTangents, scientific format | February 2, 2010 | 111K | ArcTan(20) through ArcTan(2-768), 120 decimal places. Although ArcTan(1) is correct, I don't trust all decimal places. Good for CORDIC ArcTan routines. As N increases, ArcTan(2-N) ~ 2-N. |
Factors of integers, list format | February 3, 2010 | 37K | 1 to 3000 |
Factors of integers, packed format | February 3, 2010 | 35K | 1 to 3000 |
Factors of Factorials, packed format | February 3, 2010 | 638K | 2! to 1180!, each line of the file fits into one line of Notepad. |
Factors of Factorials, packed format | February 3, 2010 | 3.88M | 2! to 3000!, HUGE text file, lines after 1180! are too long for Notepad and exhibit word-wrap. |
Inverse of Factorials, scientific format | February 3, 2010 | 942K | 1/1! to 1/3000!, 300 decimal places, but I don't trust the last 1-2 places. Up through 1/170! are good for computing 300-digit Taylor Series for brute-force sine, cosine, ex routines. |