enow.com Web Search

Search results

  1. Results from the WOW.Com Content Network
  2. General number field sieve - Wikipedia

    en.wikipedia.org/wiki/General_number_field_sieve

    In order to achieve this speed-up, the number field sieve has to perform computations and factorizations in number fields. This results in many rather complicated aspects of the algorithm, as compared to the simpler rational sieve. The size of the input to the algorithm is log 2 n or the number of bits in the binary representation of n.

  3. Sieve of Atkin - Wikipedia

    en.wikipedia.org/wiki/Sieve_of_Atkin

    The following is pseudocode which combines Atkin's algorithms 3.1, 3.2, and 3.3 [1] by using a combined set s of all the numbers modulo 60 excluding those which are multiples of the prime numbers 2, 3, and 5, as per the algorithms, for a straightforward version of the algorithm that supports optional bit-packing of the wheel; although not specifically mentioned in the referenced paper, this ...

  4. Generation of primes - Wikipedia

    en.wikipedia.org/wiki/Generation_of_primes

    A prime sieve or prime number sieve is a fast type of algorithm for finding primes. There are many prime sieves. The simple sieve of Eratosthenes (250s BCE), the sieve of Sundaram (1934), the still faster but more complicated sieve of Atkin [1] (2003), sieve of Pritchard (1979), and various wheel sieves [2] are most common.

  5. Integer factorization - Wikipedia

    en.wikipedia.org/wiki/Integer_factorization

    Continuing this process until every factor is prime is called prime factorization; the result is always unique up to the order of the factors by the prime factorization theorem. To factorize a small integer n using mental or pen-and-paper arithmetic, the simplest method is trial division : checking if the number is divisible by prime numbers 2 ...

  6. Sieve of Eratosthenes - Wikipedia

    en.wikipedia.org/wiki/Sieve_of_Eratosthenes

    Sieve of Eratosthenes: algorithm steps for primes below 121 (including optimization of starting from prime's square). In mathematics, the sieve of Eratosthenes is an ancient algorithm for finding all prime numbers up to any given limit.

  7. Pollard's p − 1 algorithm - Wikipedia

    en.wikipedia.org/wiki/Pollard%27s_p_%E2%88%92_1...

    Pollard's p − 1 algorithm is a number theoretic integer factorization algorithm, invented by John Pollard in 1974. It is a special-purpose algorithm, meaning that it is only suitable for integers with specific types of factors; it is the simplest example of an algebraic-group factorisation algorithm .

  8. Trial division - Wikipedia

    en.wikipedia.org/wiki/Trial_division

    An example of the trial division algorithm, using successive integers as trial factors, is as follows (in Python): def trial_division ( n : int ) -> list [ int ]: """Return a list of the prime factors for a natural number.""" a = [] # Prepare an empty list. f = 2 # The first possible factor.

  9. Talk:Prime factorization algorithm - Wikipedia

    en.wikipedia.org/wiki/Talk:Prime_factorization...

    I used python to calculate the above number. It is seriously that big. Currently all known Integer_factorization algorithms are slow as dirt when trying to factor the above number. I'm no expert in prime numbers, but even if there was only one prime in a million (1000000), you can clearly see how many primes there would be.