Sieve of Eratosthenes is a simple, ancient algorithm for finding all prime numbers up to a specified integer.

learn more… | top users | synonyms

2
votes
3answers
80 views

Sum of primes using Sieve of Eratosthenes; answer too small

For Project Euler problem #10, I wrote a program to find the sum of all prime numbers between 2 and 2,000,000. My code works for smaller values like 50 or 100, but when I try it with 2,000,000 it ...
0
votes
2answers
62 views

Sieve of Erastothenes

I'm trying to figure out how to use the sieve of eratosthenes to find the prime numbers from 1-300. I'm having trouble figuring it out, so any help would be nice! Btw, im new to programming so if you ...
7
votes
4answers
263 views

Cannot understand this prime generator algorithm in my textbook

I am studying Elements of Programming Interviews, and I am stuck on a problem. It is about writing a c++ function for finding all prime numbers from 1 to n, for a given n. vector<int> ...
1
vote
2answers
70 views

Sieve of Eratosthenes bit array

I am trying to find primes using Sieve of Eratosthenes with bit arrays, but I am using unsigned int array. I need to be able to generate upto 2,147,483,647 primes. My code works and can generate ...
0
votes
1answer
87 views

Is this an optimal prime generator?

Is this in any way an optimal solution for finding primes? I am not trying to add every optimization under the sun, but is the principal good? def primesUpto(self, x): primes = [2] sieve = ...
-3
votes
3answers
83 views

run time error (SIGSEGV) SPOJ Sieve of Eratosthenes

Hi I'm getting SIGSEGV error for this problem, dont know where is th problem: http://www.spoj.com/problems/PRIME1/ I tried to solve it by sieve-of-Eratosthenes algo given on Wikipedia. here is my ...
0
votes
4answers
142 views

Is this more efficient than Sieve of Eratosthenes?

I wrote a code in Python 2.7 for creating list of prime numbers. The code is def primes_list(num): ans = [2] for i in range(3, num, 2): for j in ans: if i % j == 0: ...
-1
votes
2answers
178 views

How to write a function that lists prime numbers using the sieve of Eratosthenes

I am supposed to code a function or script that finds all prime numbers p smaller than a given integer n>2 using the "sieve of Eratosthenes" avoiding unecessary storage(I can create a vector of length ...
0
votes
1answer
65 views

Sieve of Eratosthenes using a bit array

I have a bit array prime[]of unsigned int. I wish to implement a Sieve of Eratosthenes using this array, by having each bit represent a number n. That is, given n, the array element that holds the bit ...
2
votes
1answer
309 views

A Fast Prime Number Sieve in Python

I have been going through prime number generation in python using the sieve of Eratosthenes and the solutions which people tout as a relatively fast option such as those in a few of the answers to a ...
0
votes
4answers
95 views

Sieve of Eratosthenes implementation

I am trying to implement algorithm for Sieve of Eratosthenes but I don't know why this program crashes for larger programs. Initially I was using vector but now I am implementing this using dynamic ...
0
votes
2answers
41 views

Weird Output with first case integer

Here are two functions below that compile perfectly but I seem to be getting a weird error with the very first inputted integer. I have tried debugging in GDB but when it's only the first inputted ...
-4
votes
1answer
98 views

Segmentation Fault with Sieves of Eratosthenes algorithm in C [duplicate]

Okay, so this function I created uses the Sieve of Eratosthenes algorithm to compute all the primes <= n. This function stores the prime numbers and the count of primes in the parameters. When the ...
2
votes
2answers
289 views

Sieve of Eratosthenes algorithm in C

Okay, so this function I created uses the Sieve of Eratosthenes algorithm to compute all the primes <= n. This function stores the prime numbers and the count of primes in the parameters. When ...
0
votes
1answer
60 views

Sieve of Eratosthenes near complexity approximation

I have tried to give a more precise approximation to Sieve of Eratosthenes. Elementary operations and weights that I used: prime[p] -> 1 operation m = p * p -> 2 operations ...
0
votes
1answer
106 views

How to Optimize CUDA Sieve of Eratosthenes [closed]

I'm new to CUDA. To get my hands dirty, I tried writing a Sieve of Eratosthenes (for finding all the primes up to some number n). There are a number of things I had to do to get it to work that it ...
-3
votes
2answers
110 views

How to calculate the fastest prime number to be identified in Sieve of Eratosthenes in O(n) time? [closed]

I have a home assignment that includes this question: For the Sieve of Eratosthenes, identify a number n, n > 2, such that the Sieve of Eratosthenes will be able to decide whether or not it is a ...
4
votes
2answers
182 views

Why am I getting segfault from this unsigned int?

I'm trying to initialize an integer array and set all elements to 1. I need the array to have an upper bound of 4294967295, or the maximum number possible for a 32-bit unsigned int. This seems like a ...
2
votes
1answer
92 views

Sieve of Eratosthenes Issue Java

I've got an issue with an assignment that I have requiring the use of arrays. I need to create the Sieve of Eratosthenes algorithm and print out all the prime numbers. I'm quite confused because as ...
2
votes
1answer
134 views

How can I block threads until prime is found, unblock it, then have them wait until next prime?

I am writing a multithreaded Sieve of Eratosthenes where I have to use pthreads. I'm pretty sure the way to do this is to use mutexes and cond_waits. I create 4 threads in the beginning of the ...
0
votes
0answers
220 views

Multithreading Sieve of Eratosthenes - Taking a very very long time

I am attempting to create a multi-threaded Sieve of Eratosthenes The number of threads are set by default to 4, though they can be specified by the user as a command line argument. I'm attempting to ...
-2
votes
1answer
109 views

Implementing sieve of eratosthenes and then getting highest prime factor [closed]

I am stuck on trying to get the sieve to work. When I debug it, it tells me that stuff like 9 and 15 still evaluate to true when they go through the sieve. What causes this? Also, am I using the ...
-2
votes
1answer
142 views

Sieve of Eratosthenes algorithm not working for large limits

I have programmed a sieve of Eratosthenes algorithm in C++, and it works fine for smaller numbers that I have tested it with. However, when I use large numbers, i.e. 2 000 000 as the upper limit, the ...
0
votes
4answers
124 views

C++ Array Allocation Segmentation Fault 11 Newbie

I am learning C++ from Algorithms in C++ by Robert Sedgewick. Right now I am working on the Sieve of Eratosthenes with a user specified upper bound on the largest prime. When I run the code with max ...
4
votes
2answers
207 views

What's the ideal implementation for the Sieve of Eratosthenes between Lists, Arrays, and Mutable Arrays?

In Haskell, I've found three simple implementations of the Sieve of Eratosthenes on the Rosetta Code page. Now my question is, which one should be used in which situations? Correcting my initial ...
-5
votes
1answer
67 views

Sieve of Eratosthenes Time Complexity [closed]

What is the time complexity of Sieve of Eratosthenes algorithm to find prime numbers? How to calculate it? Please describe it... Thanks for your help!
-1
votes
3answers
186 views

C++ Sieve of Eratosthenes finding 3 too many primes

I have a programming assignment to write a program in C++ that finds all primes less than n (user input). One half of the assignment involves the Sieve of Eratosthenes. My code is working (read: ...
1
vote
3answers
213 views

Listing prime numbers using Sieve's method using bitmask

I wrote the following code to list all the prime numbers upto 2 billion using Sieve's method. I used bitmasking for flagging purpose. While I am able to get the prime numbers correctly, a few primes ...
3
votes
2answers
367 views

Listing prime numbers up to 2 billion using sieve's method in C

I tried listing prime numbers up to 2 billion, using Sieve Eratosthenes method. Here is what I used! The problem I am facing is, I am not able to go beyond 10 million numbers. When I tried, it says ...
-6
votes
1answer
64 views

Explaining the modified sieve code [closed]

What is the following code Doing and how are the left and right shift operators working ? Can someone please explain. void sieve() { register int i,j,p,q,k; int m=MAX/2; ...
2
votes
3answers
258 views

Prime numbers using Sieve of erastosthenes in C

I wrote the following program to display all prime numbers up to 150. It is not executing at all. what is so wrong with it? # include <stdio.h> int main(void) { int p[150], i, j; for ...
7
votes
1answer
138 views

double stream feed to prevent unneeded memoization?

I'm new to Haskell and I'm tring to implement sieve of euler in stream processing style. When I check the haskell wiki about prime numbers,I found some mysterious optimization technique for streams. ...
2
votes
4answers
101 views

Trying to write an Eratosthenes Sieve in Python. Is this correct and how can I make it faster? [duplicate]

Possible Duplicate: Fastest way to list all primes below N in python I have not been doing programming for very long, and I'm just doing this for fun, and I don't know much advanced Python, ...
2
votes
2answers
105 views

J (Tacit) Sieve Of Eratosthenes

I'm looking for a J code to do the following. Suppose I have a list of random integers (sorted), 2 3 4 5 7 21 45 49 61 I want to start with the first element and remove any multiples of the element ...
3
votes
1answer
177 views

“The Genuine Sieve of Eratosthenes” in Python - why is heapq slower than dict?

Following M. O'Neill's great paper, I tried implementing some lazy, infinite versions of the Sieve of Eratosthenes in Python. I was surprised to find that the heap-based version, that the paper claims ...
1
vote
1answer
70 views

Algorithms similar in complexity to Sieve of Eratosthenes [closed]

I'm trying to prepare for an algorithm white board interview. I know that this company really like the Sieve of Eratosthenes algorithm, so I'm trying to find practice algorithms that are similar in ...
1
vote
1answer
255 views

Need to make program paralleling Sieve of Eratosthenes algorithm in java using arrays

We were assigned to make a java program which paralleled Sieve of Eratosthenes algorithm. I have tried several times in every which way i know of, but haven't been able to get it right. Im supposed to ...
1
vote
4answers
84 views

ArrayIndexOutOfBoundsException while implementing Sieve of Eratosthenes

When I run my program I get the following exception: Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 1 at eraKevgiri.main(eraKevgiri.java:29) What is the problem with ...
0
votes
3answers
151 views

optimizing the code for sieve

Here is the code that i have written for finding prime numbers between a range where the upper bound can be as big as 1000000000.I have used Hashmap and have not stored any even number except 2 and ...
0
votes
1answer
80 views

Why does this code abort when running for sizes [6, 10, 14, …]

This is some code I wrote for implementing Sieve of Eratosthenes: #include <iostream> #include <vector> #include <cmath> #include <cassert> #include <cstdlib> int ...
0
votes
3answers
195 views

Find the prime-->sieve way

I tried it several times but still gives me ArrayOutOfIndex. But i want to save the memory so i use boolean[]isPrime = new boolean [N/2+1]; instead of boolean[]isPrime = new boolean [N+1]; ...
1
vote
4answers
243 views

How do i reduce the space complexity in Sieve of Eratosthenes to generate prime between a and b?

After getting through some of the SO posts, i found Sieve of Eratosthenes is the best & fastest way of generating prime numbers. I want to generate the prime numbers between two numbers, say a ...
0
votes
3answers
119 views

Sieve of Eratosthenes wrong output

I was trying to find out the sum of all prime up to 2 million. So I wrote the following code for it: #include <math.h> #include <stdlib.h> #define limit 2000000 int main(void) { ...
1
vote
1answer
311 views

Java: Sieve of Eratosthenes: Array as parameter

My goal is to Turn off, or set to false, all array spots that are not prime. Array is provided as a parameter. public static boolean[] sieveOfEratosthenes(boolean [] a){ int increment= 2; ...
2
votes
1answer
76 views

Merged iterators produce obscure results

I'm trying to implement prime number generator using Sieve of Eratosthenes algorithm. I do it just to try using recursive iterator merging to implement sifter. What I do is this: from itertools ...
1
vote
4answers
610 views

SPOJ PRIME1 : TLE

I tried implementing the segmented sieve algorithm for this [question]:http://www.spoj.pl/problems/PRIME1/ as follows : #include <iostream> #include <string> #include <set> ...
3
votes
5answers
621 views

Prime Sieve in Haskell

I'm very new to Haskell and I'm just trying to find the sum of the first 2 million primes. I'm trying to generate the primes using a sieve (I think the sieve of Eratosthenes?), but it's really really ...
9
votes
4answers
557 views

Why is this prime test so slow?

This code was taken from the book "Haskell Road to Logic, Math and Programming". It implements sieve of eratosthenes algorithm and solves Project Euler Problem 10. sieve :: [Integer] -> [Integer] ...
0
votes
4answers
261 views

Print first 1 million primes in 1 sec with constraints program size 50000 bytes and limited Memory

I tried sieve of Eratosthenes: Following is my code: void prime_eratos(int N) { int root = (int)sqrt((double)N); bool *A = new bool[N + 1]; memset(A, 0, sizeof(bool) * (N + 1)); for ...
4
votes
6answers
616 views

Program to find all primes in a very large given range of integers

i came across this following question on a programming website : Peter wants to generate some prime numbers for his cryptosystem. Help him! Your task is to generate all prime numbers between two given ...

1 2 3