Tagged Questions
Primes or prime numbers are numbers which are divisible only by themselves and one: 2, 3, 5, 7, 11, ...
57
votes
17answers
9k views
Fastest way to list all primes below N in python
This is the best algorithm I could come up with after struggling with a couple of Project Euler's questions.
def get_primes(n):
numbers = set(range(n, 1, -1))
primes = []
while numbers:
...
36
votes
6answers
844 views
Why is the size 127 (prime) better than 128 for a hash-table?
Supposing simple uniform hashing, that being, any given value is equally like to hash into any of the slots of the hash. Why is it better to use a table of size 127 and not 128? I really don't ...
35
votes
12answers
4k views
Why are primes important in cryptography?
One thing that always strikes me as a non-cryptographer: Why is it so important to use Prime numbers? What makes them so special in cryptography?
Does anyone have a simple short explanation? (I am ...
26
votes
8answers
3k views
Why use a prime number in hashCode?
Hey so I'm sorry if this is really obvious but I was just wondering why is that primes are used in a class's hashCode() method? For example, when using Eclipse to generate my hashCode() method there ...
24
votes
24answers
8k views
Most elegant way to generate prime numbers
What is the most elegant way to implement this function:
ArrayList generatePrimes(int n)
This function generates the first n primes (edit: where n>1), so generatePrimes(5) will return an ...
23
votes
9answers
2k views
Given Prime Number N, Compute the Next Prime?
A coworker just told me that the C# Dictionary collection resizes by prime numbers for arcane reasons relating to hashing. And my immediate question was, "how does it know what the next prime is? do ...
22
votes
1answer
730 views
Recursive function causing a stack overflow
I am trying to write a simple sieve function to calculate prime numbers in clojure. I've seen this question about writing an efficient sieve function, but I am not to that point yet. Right now I am ...
21
votes
9answers
2k views
Speed up bitstring/bit operations in Python?
I wrote a prime number generator using Sieve of Eratosthenes and Python 3.1. The code runs correctly and gracefully at 0.32 seconds on ideone.com to generate prime numbers up to 1,000,000.
# from ...
20
votes
7answers
26k views
Which is the fastest algorithm to find prime numbers?
Which is the fastest algorithm to find out prime numbers using C++? I have used sieve's algorithm but I still want it to be faster!
19
votes
11answers
803 views
How TDD works when there can be millions of test cases for a production functionality?
In TDD, you pick a test case and implement that test case then you write enough production code so that the test passes, refactor the codes and again you pick a new test case and the cycle continues.
...
19
votes
7answers
713 views
Find largest number with all contiguous triples being unique primes
Find largest number with all contiguous triples being unique primes
If the digits of the answer are
pqrstu...xyz
then pqr, qrs, rst ... etc are all unique primes.
As expected, extra points for ...
18
votes
6answers
4k views
Fast Prime Number Generation in Clojure
I've been working on solving Project Euler problems in Clojure to get better, and I've already run into prime number generation a couple of times. My problem is that it is just taking way too long. I ...
16
votes
2answers
407 views
How does this regex find primes? [closed]
Possible Duplicate:
How to determine if a number is a prime with regex?
This page claims that this regular expression discovers non-prime numbers (and by counter-example: primes):
...
15
votes
3answers
572 views
Why setting HashTable's length to a Prime Number is a good practice?
I was going through Eric Lippert's latest Blog post for Guidelines and rules for GetHashCode when i hit this para:
We could be even more clever here; just as a List resizes itself when it gets ...
15
votes
2answers
1k views
Improving pure Python prime sieve by recurrence formula
I am trying to optimize further the champion solution in prime number thread by taking out the complex formula for sub-list length. len() of the same subsequence is too slow as len is expensive and ...
15
votes
7answers
2k views
Ruby isPrime Method
('1' * N) !~ /^1?$|^(11+?)\1+$/
On the net, I found this piece of Ruby code that works for N >= 0 that determines whether or not N is a prime. From what I can tell, it looks like play with regex but ...
15
votes
19answers
10k views
Most efficient code for the first 10000 prime numbers?
I want to print the first 10000 prime numbers.
Can anyone give me the most efficient code for this?
Clarifications:
It does not matter if your code is inefficient for n >10000.
The size of ...
14
votes
16answers
4k views
Is there a simple algorithm that can determine if X is prime, and not confuse a mere mortal programmer?
I have been trying to work my way through Project Euler, and have noticed a handful of problems ask for you to determine a prime number as part of it.
1) I know I can just divide x by 2, 3, 4, 5, ...
13
votes
1answer
284 views
What is the fastest deterministic primality test for numbers in the range 2^1024 to 2^4096?
I am writing an implementation of a cryptography protocol. So far I've been having a difficult time finding the fastest deterministic primality test for 1024-bit to 4096-bit integers (308- to ...
13
votes
1answer
409 views
Five Digit Primes in a 5x5 Grid
|---|---|---|---|---|
| 1 | 1 | 3 | 5 | 1 |
|---|---|---|---|---|
| 3 | 3 | 2 | 0 | 3 |
|---|---|---|---|---|
| 3 | 0 | 3 | 2 | 3 |
|---|---|---|---|---|
| 1 | 4 | 0 | 3 | 3 |
|---|---|---|---|---|
| ...
13
votes
5answers
2k views
What is a sensible prime for hashcode calculation?
Eclipse 3.5 has a very nice feature to generate Java hashCode() functions. It would generate for example (slightly shortened:)
class HashTest {
int i;
int j;
public int hashCode() ...
12
votes
2answers
309 views
Question about the ~ and @ operators in Haskell
What exactly do they do? I know one possible use of @ (assigning a name at the start of a pattern match), but haven't been able to find anything on ~.
I found them in the following code snippet, ...
12
votes
2answers
557 views
Proving the primality of strong probable primes
Using the probabilistic version of the Miller-Rabin test, I have generated a list of medium-large (200-300 digit) probable primes. But probable ain't good enough! I need to know these numbers are ...
12
votes
6answers
1k views
nth ugly number
Numbers whose only prime factors are 2, 3 or 5 are called ugly numbers.
Example:
1, 2, 3, 4, 5, 6, 8, 9, 10, 12, 15, ...
1 can be considered as 2^0.
I am working on finding nth ugly number. Note ...
11
votes
3answers
327 views
Why .Net dictionaries resize to prime numbers?
According to this question a .Net dictionary resizes its allocated space to prime numbers that are at least twice the current size. Why is it important to use prime numbers and not just twice the ...
11
votes
8answers
1k views
Calculating Extremely Large Powers of 2
I have made a program in Java that calculates powers of two, but it seems very inefficient. For smaller powers (2^4000, say), it does it in less than a second. However, I am looking at calculating ...
11
votes
7answers
2k views
Finding the exponent of n = 2**x using bitwise operations [logarithm in base 2 of n]
Is there a straightforward way to extracting the exponent from a power of 2 using bitwise operations only?
EDIT: Although the question was originally about bitwise operations, the thread is a good ...
11
votes
18answers
5k views
Prime number calculation fun
We're having a bit of fun here at work. It all started with one of the guys setting up a Hackintosh and we were wondering whether it was faster than a Windows Box of (nearly) same specs that we have. ...
10
votes
5answers
311 views
Algorithm to find Lucky Numbers
I came across this question.A number is called lucky if the sum of its digits, as well as the sum of the squares of its digits is a prime number. How many numbers between A and B are lucky? 1 <= A ...
10
votes
8answers
901 views
Generate large prime number with specified last digits
Was wondering how is it possible to generate 512 bit (155 decimal digits) prime number, last five decimal digits of which are specified/fixed (eg. ***28071) ??
The principles of generating simple ...
10
votes
4answers
2k views
Random prime number
How do I quickly generate a random prime number, that is for sure 1024 bit long?
10
votes
1answer
3k views
AKS Primes algorithm in Python
A few years ago, it was proven that PRIMES is in P. Are there any algorithms implementing their primality test in Python? I wanted to run some benchmarks with a naive generator and see for myself how ...
9
votes
5answers
212 views
how to generate numbers given their prime factors, but with unknow exponents? [closed]
Possible Duplicate:
nth ugly number
Find the Kth least number for expression (2^x)(3^y)(5^z)
I'm wondering how to solve this problem in a fast and elegant way:
We define "ugly" every ...
9
votes
4answers
2k views
Fast prime/factorization module
I am looking for an implementation or clear algorithm for getting the prime factorization of N in either python, pseudocode or anything else well-readable. There are a few demands/facts:
N is ...
9
votes
4answers
952 views
Converting prime numbers [closed]
Possible Duplicate:
Help with algorithm problem from SPOJ
Came across this interview question. Given two n-digit prime numbers, convert the first prime number to the second changing one ...
9
votes
6answers
1k views
Efficient storage of prime numbers
For a library, I need to store the first primes numbers up to a limit L. This collection must have a O(1) lookup time (to check whether a number is prime or not) and it must be easy, given a number, ...
8
votes
1answer
281 views
How plot the Riemann zeta zero spectrum with the Fourier transform in Mathematica?
In the paper "The Riemann Hypothesis" by J. Brian Conrey in figure 6 there is a plot of the Fourier transform of the error term in the prime number theorem. See the plot to the left in the image ...
8
votes
3answers
207 views
Fast multiplication and subtraction modulo a prime
I need to optimize some code where I multiply a vector of ints (32 bit) by a scalar modulo p (where p is the prime number (2^32)-5) and then subtract that vector from another vector modulo p.
The ...
8
votes
3answers
781 views
RSA and prime-generator algorithms
OK, my understanding of the mathematical workings of RSA may not be as deep as it should, so feel free to slap me over the head if this is stupid:
To generate a private key, we need two random big ...
8
votes
2answers
152 views
How does this regular expression work?
From this article,
/^1?$|^(11+?)\1+$/ checks whether a number(its value in unary) is prime or not.
Using this, perl -l -e '(1 x $_) !~ /^1?$|^(11+?)\1+$/ && print while ++$_;' returns a list ...
8
votes
5answers
808 views
Generating REALLY big primes
I'm playing around and trying to write an implementation of RSA. The problem is that I'm stuck on generating the massive prime numbers that are involved in generating a key pair. Could someone point ...
8
votes
15answers
5k views
Project Euler Question 3 Help
I'm trying to work through Project Euler and I'm hitting a barrier on problem 03. I have an algorithm that works for smaller numbers, but problem 3 uses a very, very large number.
Problem 03:
The ...
7
votes
2answers
278 views
Why is this prime sieve implementation slower?
I was just experimenting a bit with (for me) a new programming language: clojure. And I wrote a quite naive 'sieve' implementation, which I then tried to optimise a bit.
Strangely enough though (for ...
7
votes
3answers
905 views
Lazy List of Prime Numbers
How would one implement a list of prime numbers in Haskell so that they could be retrieved lazily?
I am new to Haskell, and would like to learn about practical uses of the lazy evaluation ...
7
votes
1answer
227 views
Beginner question about heap and garbage in Clojure
I have a question about Clojure:
I am trying to learn the language by going through Project Euler and I don't understand what is going on under the hood: The following code is designed to use return ...
7
votes
3answers
578 views
Need help optimizing solution for Project Euler problem #12
I've been having my fun with Project Euler challenges again and I've noticed that my solution for number 12 is one of my slowest at ~593.275 ms per runthrough. This is second to my solution for number ...
7
votes
8answers
4k views
Fastest algorithm for primality test
I need to test primality on intervals between numbers which are really big (in the range of long long), so i need some fast algorithm for checking if a number is prime or not. Please suggest your ...
7
votes
2answers
2k views
Java BigInteger prime numbers
I a m trying to generate a random prime number of type BigInteger, that is between an min and max value which I supply.
I am aware of the BigInteger.probablePrime(int bitlength, random), but I am not ...
7
votes
5answers
2k views
Fastest modular exponentiation in JavaScript
My problem is to compute (g^x) mod p quickly in JavaScript, where ^ is exponentiation, mod is the modulo operation. All inputs are nonnegative integers, x has about 256 bits, and p is a prime number ...
7
votes
6answers
2k views
Learning F# - printing prime numbers
Yesterday I started looking at F# during some spare time. I thought I would start with the standard problem of printing out all the prime numbers up to 100. Heres what I came up with...
#light
open ...