Tagged Questions

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

learn more… | top users | synonyms

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 ...
17
votes
2answers
2k views

Time complexity of Sieve of Eratosthenes algorithm

From Wikipedia: The complexity of the algorithm is O(n(logn)(loglogn)) bit operations. How do you arrive at that? That the complexity includes the loglogn term tells me that ...
11
votes
13answers
2k views

Sieve of Eratosthenes in Erlang

I'm in the process of learning Erlang. As an exercise I picked up the Sieve of Eratosthenes algorithm of generating prime numbers. Here is my code: -module(seed2). -export([get/1]). get(N) -> ...
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
864 views

Why do I fail Project Euler #10?

Question is: Find the sum of all the primes below 2 million. I pretty much did the Sieve of Erastothenes thing, and the program below seems to work for small number i.e. define LIMIT as 10L produces ...
6
votes
1answer
320 views

SPOJ Problem KPRIMES2

Hello all I am new to this forum and not well aware of protocols of this forum so pardon me for my ignorance. My question is related to spoj problem https://www.spoj.pl/problems/KPRIMES2/. I am ...
6
votes
1answer
297 views

Clojure: Avoiding stack overflow in Sieve of Erathosthene?

Here's my implementation of Sieve of Erathosthene in Clojure (based on SICP lesson on streams): (defn nats-from [n] (iterate inc n)) (defn divide? [p q] (zero? (rem q p))) (defn sieve [stream] ...
6
votes
3answers
4k views

Sieve of Atkin explanation

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 have found that the sieve ...
5
votes
2answers
254 views

Getting functional sieve of Eratosthenes fast

I read this other post about a F# version of this algorithm. I found it very elegant and tried to combine some ideas of the answers. Although I optimized it to make fewer checks (check only numbers ...
5
votes
8answers
3k views

Finding prime numbers with the Sieve of Eratosthenes (Originally: Is there a better way to prepare this array?)

Note: Version 2, below, uses the Sieve of Eratosthenes. There are several answers that helped with what I originally asked. I have chosen the Sieve of Eratosthenes method, implemented it, and ...
5
votes
2answers
2k views

Sieve of Eratosthenes in Ruby

Rather than scraping a Ruby version of this algorithm off the net I wanted to create my own based on its description here. However I cannot figure out two things def primeSieve(n) primes = ...
4
votes
2answers
206 views

How can I improve performance on my clojure sieve of eratosthenes algorithm?

I'm learning clojure by going through project euler and am working on problem number 10 (find the sum of all the prime number below two million. I implemented a pretty literal algorithm for the sieve ...
4
votes
2answers
858 views

Sieve of Eratosthenes - Finding Primes Python

Just to clarify, this is not a homework problem :) I wanted to find primes for a math application I am building & came across Sieve of Eratosthenes approach. I have written an implementation of ...
4
votes
7answers
313 views

Exceeding the size of lists in python

I'm trying to implement the sieve of eratosthenes in python, however when trying to find all primes up to the sqare root of for instance 779695003923747564589111193840021 I get an error saying result ...
4
votes
2answers
456 views

Help understanding Sieve of Eratosthenes implementation

This is boring, I know, but I need a little help understanding an implementation of the Sieve of Eratosthenes. It's the solution to this Programming Praxis problem. (define (primes n) (let* ...
3
votes
2answers
157 views

Help understanding eratosthenes sieve implementation

I found this LINQ implementation of the eratosthenes sieve on this website. I understand the basic concept of the sieve, but there's one detail I don't get. What is the purpose of the first ...
3
votes
4answers
539 views

Sieve of Eratosthenes in Java: A Problem, and some optimization

I did a quick implementation of the SoE algo in Java (code at the end). The output on my dual core AMD processor is: Allocation: 31 Meat: 10140 Listing: 10171 Preparing end: ...
3
votes
10answers
16k views

Program to find prime numbers

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 to: Code: using ...
2
votes
6answers
99 views

Python Eratosthenes Sieve Algorithm Optimization

I'm attempting to implement the Sieve of Eratosthenes. The output seems to be correct (minus "2" that needs to be added) but if the input to the function is larger than 100k or so it seems to take an ...
2
votes
4answers
164 views

find primes in a certain range efficiently

This is code an algorithm I found for Sieve of Eratosthenes for python3. What I want to do is edit it so the I can input a range of bottom and top and then input a list of primes up to the bottom one ...
2
votes
2answers
324 views

is Sieve of erathosthens the best algorithm to generate prime numbers from 1 to N?

I was asked this question in an interview. I implemented an algorithm using sieve of eratosthenes concept and an array. Is there a better way to go about this question For those who dont know the ...
2
votes
4answers
618 views

Scala: iterate a sequence while modifying it?

I'm trying to implement the Sieve of Eratosthenes in Scala. I start by initializing a sequence of all odd numbers plus 2: // (end goal is to find all prime factors of bigNumber) val largestPrime : ...
2
votes
5answers
2k views

Fast algorithm for finding prime numbers?

First of all - I checked a lot in this forum and I haven't found something fast enough. I try to make a function that returns me the prime numbers in a specified range. For example I did this function ...
2
votes
3answers
1k views

Sieve of Eratosthenes problem: handling really big numbers

I'm solving Sphere's Online Judge Prime Generator using the Sieve of Eratosthenes. My code works for the test case provided. But.. as the problem clearly states: The input begins with the number ...
1
vote
4answers
92 views

For loop repeating/stuck? Python 3.2

I am trying to write a python script for Sieve of Eratosthenes. I have everything done, but when I tell the program to test each number if it is a multiple of at least one of the prime numbers below ...
1
vote
1answer
99 views

Sieve of Eratosthenes

I read up on the sieve of Eratosthenes while solving a question on Project Euler. I'm sure you guys know which question im talking about... So here's the thing. My code manages to show all the primes ...
1
vote
2answers
148 views

Sieve of Erathostenes ArrayIndexOutOfBounds

trying to implement a simple sieve of erathosthenes to solve this question on project euler : The sum of the primes below 10 is 2 + 3 + 5 + 7 = 17. Find the sum of all the primes below two ...
1
vote
2answers
229 views

Learning algorithms and analysis. Robert Sedgewick

I am reading the book Algorithms in Java by Robert Sedgewick. I was not able to understand anything from the first part, it talks too much about analysis of algorithms. Kind of skipped it. As I start ...
1
vote
3answers
470 views

Porting optimized Sieve of Eratosthenes from Python to C++

Some time ago I used the (blazing fast) primesieve in python that I found here: Fastest way to list all primes below N in python To be precise, this implementation: def primes2(n): """ Input ...
1
vote
7answers
652 views

My Sieve of Eratosthenes takes too long

I have implemented Sieve of Eratosthenes to solve the SPOJ problem PRIME1. Though the output is fine, my submission exceeds the time limit. How can I reduce the run time? int main() { ...
1
vote
6answers
996 views

Time complexity of the program

#include<stdio.h> #include<time.h> int main() { clock_t start; double d; long int n,i,j; scanf("%ld",&n); n=100000; j=2; start=clock(); ...
0
votes
2answers
56 views

Sieve of Erathostenes.. find primes in range. How to get starting point?

**NOTE: This is related to a college assignment. I'm only requesting some guidance in the right direction. I have a single threaded solution to find prime numbers (Homework is to convert to multi ...
0
votes
2answers
120 views

Further speeding up of Sieve method of Eratosthenes to find primes

I saw this c code of using Sieve method of Eratosthenes to find primes, but I cannot extend it to even larger integers (for example, to 1000000000 and even larger) because of memory consumption to ...
0
votes
4answers
186 views

Handling memory usage for big calculation in python

I am trying to do some calculations with python, where I ran out of memory. Therefore, I want to read/write a file in order to free memory. I need a something like a very big list object, so I thought ...
0
votes
6answers
130 views

What is going wrong with the logic?

I'm trying to write a prime generator that implements the sieve of Eratosthenes. However, it includes some composite numbers (such as 25, 49 and other multiples of 5 and 7) in the output. Here's my ...
0
votes
1answer
156 views

C# BitArray and Int64

I'm implementing the Sieve of Eratosthenes algorithm using BitArray in C# 4. The code is: cPrimesB = new BitArray((int)max, true); //in constructor primes = new List<ulong>(); //in constructor ...
0
votes
1answer
349 views

Problem #10 Project Euler. Sum of primes below two million. Sieve of Eratosthenes

Having a little trouble solving Problem #10 on Project Euler: 'Calculate the sum of primes below two million'. I'm using the 'Sieve of Eratosthenes' method. My method works fine for findinng primes ...
0
votes
1answer
181 views

Help adding the Prime Number Hypothesis by C.F. Gauss to my Sieve of Eratosthenes

Hey all! So I'm almost done with a problem that I started working on for school that deals with the Sieve of Eratosthenes. I managed to get the program to print out all the prime numbers from 2 to the ...
0
votes
4answers
86 views

value error for seive of eratosthenes problem in python

Here's my version of the Sieve of Eratosthenes for finding prime numbers up to a limit n. I feel like it should work but I get an error and I don't really understand why: mylist.remove(i) ...
0
votes
4answers
165 views

Segmentation Fault in my code

This is a code I submitted at sphere online judge for generating prime numbers but I'm getting a segmentation fault. The objective is to generate prime numbers between the given range m to n (with n > ...
0
votes
4answers
332 views

Scala performance - Sieve

Right now, I am trying to learn Scala . I've started small, writing some simple algorithms . I've encountered some problems when I wanted to implement the Sieve algorithm from finding all all prime ...
0
votes
4answers
343 views

Sieve of Eratosthenes Algorithm

I did some searching and was not able to find any information regarding this implementation versus every other one I have seen. function sieve($top) { for($i = 11; $i<$top; $i+=2) { ...
-1
votes
2answers
126 views

How to get table size 2^32 in java

I have to get in java protected final static int [] SIEVE = new int [ 1 << 32 ]; But i cant force java to that. Max sieve what i get is 2^26 i need 2^32 to end my homework. I tried with ...