Recommend adding a BigInteger CountOfDivisors(BigInteger n) function to Algorithms.Numeric.
Also recommend modifying DivisorsCountSequence.cs to use that function. Current algorithm of DivisorsCountSequence.cs is O(n) for each n, when it should be O(sqrt(n)).