The question is how to recognize those primes that do not divide the value of

for any value of n that is being given up.
Besides the fact that we can skip up those primes for which
)
= -1
In the Quadratic Sieve factoring algorithm,
we need to test those values of x, for a prime p, that satisfies the congruence, for which
)
.
It produces two arithmetic progressions, with a common difference of p, for each of the both sequences.
Like that, anything existing for the continued fraction factoring algorithm?
The values of

here,
are produced at random, from the continued fraction expansion of

, by using this method.
We have the fact that, this congruence is being satisfied up always
Quote:
90% of the time is being spent in 10% of the code. The program spends majority of its execution time within the loops. Likewise, for these class of the algorithms, the program spends the majority of the time for sieving and then factoring the values of the , of course, for ever.
|