3
votes
8answers
225 views
Can this be made more pythonic?
I came across this (really) simple program a while ago. It just outputs the first x primes. I'm embarrassed to ask, is there any way to make it more "pythonic" ie condense it whil …
7
votes
4answers
195 views
Random prime number
How do I quickly generate a random prime number, that is for sure 1024 bit long?
6
votes
9answers
356 views
How do I find the nearest prime number?
Is there any nice algorithm to find the nearest prime number to a given real number? I only need to search within the first 100 primes or so.
At present, I've a bunch of prime nu …
11
votes
21answers
2k 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) wi …
0
votes
1answer
58 views
sparc assembly and the %y register
I am currently working with a sparc computer and I am trying to know if a number is prime or not.
here is a part of the code :
mov 0,%y
mov 3, %l1
nop
n …
2
votes
8answers
618 views
Program to find prime numbers in C#
I'm trying to construct a program that finds prime numbers between zero and the number input (a really long number); but the program isn't returning an output like I'm expecting it …
3
votes
4answers
321 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 …
0
votes
1answer
104 views
C#: How to make Sieve of Atkin incremental
I don't know if this is possible or not, but I just gotta ask. My mathematical and algorithmic skills are kind of failing me here :P
The thing is I now have this class that genera …
1
vote
3answers
331 views
Python recursive program to prime factorize a number
I wrote the following program to prime factorize a number:
import math
def prime_factorize(x,li=[]):
until = int(math.sqrt(x))+1
for i in xrange(2,until):
if not x%i: …
27
votes
12answers
1k 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 e …
7
votes
18answers
3k 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 > …
0
votes
2answers
532 views
Sieve of Atkin explanation
Hi, I am doing a project at the moment and I need an efficient method for calculating prime numbers. I have used the sieve of Eratosthenes but, I have been searching around and hav …
9
votes
15answers
2k views
Project Euler Problem
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 …
3
votes
14answers
611 views
How can I test for primality?
I am writing a little library with some prime number related methods. As I've done the groundwork (aka working methods) and now I'm looking for some optimization.
Ofcourse the int …
5
votes
6answers
804 views
Calculating phi(k) for 1<k<N
Given a large N, I need to iterate through all phi(k) such that 1 < k < N quickly. Since the values of N will be around 1012, it is important that the memory complexity is su …
