Primes or prime numbers are integers greater than 1 which are divisible only by themselves and 1: i.e. 2, 3, 5, 7, 11, ...

learn more… | top users | synonyms (1)

2
votes
3answers
30 views

How do I schedule a print statement upon completion of 4 independent threads?

I have a simple java application which calculates prime numbers up to a certain user-given number and prints out the numbers. I've built upon this to include four separate threads which iterate ...
0
votes
2answers
43 views

Unable to calculate the sum of prime numbers below 2 million

I'm doing the Euler's Method project to find the sum of prime numbers below 2 million and I'm struggling. Here is the code I'm using. When I calculate the sum below 10 and the sum below 50 I'm getting ...
0
votes
4answers
87 views

Factorize a number and check prime of the sum

The exercise was: Design a program that finds all numbers from 1 to 1000 whose prime factors, when added together, sum up to a prime number (for example, 12 has prime factors of 2, 2, and 3, ...
0
votes
1answer
58 views

Some numbers take longer to factor than others

Can someone tell me the reason that the number 104751475143 is computed in less than a second while the number 251475141 takes a longer amount of time? The code is trying to find the largest factor. ...
-1
votes
2answers
79 views

The following prime generator code shows an error when i want prime numbers greater than 1000000.Why?

The following prime generator code shows an error when i want prime numbers greater than 1000000.Why?? at first it seemed to occur b'cuz of int so i changed it to long but the error is still there.... ...
-1
votes
2answers
75 views

Can this Python function to test for prime numbers be extended to higher numbers? [closed]

Here's the relevant code, using a Sieve of Erasthones method (the last part of a larger function with argument x): sieve = [num for num in range(2, int(sqrt(x)) + 2)] count = 0 for item in sieve: ...
2
votes
2answers
119 views

++, last & init faster than :, head & tail?

Given these two ways of writing a function that finds all primes up to a specific number: primes1 = iterate (\ps -> ps ++ [([x | x <- [last ps + 1..], all (\p -> x `mod` ...
1
vote
3answers
107 views

Why did this prime factorisation algorithm give the correct answer even though there is a flaw?

The problem stated to me was this: "What is the largest prime factor of the number 600851475143 ?" The program is used to find the answer was exactly this using C: #include<math.h> // for ...
3
votes
4answers
86 views

Can someone explain me the following prime number generation method?

I guess the method below uses Sieve of Eratosthenes (inclusion-exclusion algorithm) to generate prime numbers up to a given number. What I specifically don't understand, is why it clears bits set on ...
0
votes
1answer
85 views

PHP Faster Prime Number generator [closed]

hey guys I'm trying to squeeze more primes out of my generator but have hit a limit of +- 14,000,000 or so primes in a sixty second run, i'm looking to push that possibly up to 25-30 mil if possible. ...
3
votes
2answers
102 views

Lucas Lehmer optimization

I've been working to optimize the Lucas-Lehmer primality test using C# code (yes I'm doing something with Mersenne primes to calculate perfect numbers. I was wondering it is possible with the current ...
0
votes
2answers
89 views

Why does my JavaScript Prime Number-Generator not work?

The aim of this program is to list all the prime numbers from 1 up. I am a complete novice. I began writing this in C++ (unsuccessfully) and translated to this (JS) I am aware of some problems but ...
1
vote
2answers
89 views

overflow possibilities in modular exponentiation by squaring

I am looking to implement the fermat's little theorem for prime testing. Here's the code I have written: lld expo(lld n, lld p) //2^p mod n { if(p==0) return 1; lld exp=expo(n,p/2); ...
1
vote
1answer
55 views

Python Pollard P-1 factorization

I'm trying to implement Pollard's P-1 factorization in Python. Note that the Rho method has some answers but this p-1 is different and the best I can give you here about p-1 is the wiki and the ...
-2
votes
2answers
62 views

(a^k(p-1)+ b) mod(p) here p is a prime number and a,b,k is an integer greater than 1 and a not divisble by p. Is this value same as (a^b)mod(p)? [closed]

According to Fermat's Little theorem a^(p-1) mod(p) is 1. So a^k(p-1) mod(p)will also be 1 by splitting into k parts and apply modulus independently we get '1'. Am I missing something?
1
vote
2answers
109 views

Prime number just below a number [duplicate]

I want to calculate prime number just below a number. How can this be done efficiently. I used Sieve of Eratosthenes but it failed as my numbers are in range 10^20 Any other algorithm??
-3
votes
2answers
626 views

Find a largest prime number less than n [closed]

How can I find a largest prime number which is less than n, where n ≤ 10¹⁸ ? Please help me find an Efficient Algorithm. for(j=n;j>=2;j--) { if(j%2 == 1) { double m = double(j); double ...
-5
votes
3answers
155 views

Is this the fastest way and a new way to test special prime numbers? [closed]

Sample code: bool is_special_prime (int N) { QHash<int, int> o; struct A_functor { int operator()(unsigned int n) { return n >> __builtin_ctz(n);} }A; int k = A(N + 1); ...
2
votes
2answers
128 views

Minimum count of numbers to be inserted in [a,b] such that GCD of 2 consecutive numbers is 1

This question was asked in TopCoder - SRM 577. Given 1 <= a < b <= 1000000, what is the minimum count of numbers to be inserted between a & b such that no two consecutive numbers will ...
1
vote
8answers
79 views

Some of my prime numbers are coming up as not prime [duplicate]

Im not too sure whats wrong with my code, it seems like most things are coming up prime. public static char isPrime(int x) { char result = 'r'; for(int y=2;y<x;y++) ...
2
votes
2answers
109 views

C factoring a number into prime factors

I wrote a program that factors numbers into its prime factors, then store them in a vector, and lastly asks whether to verify the result by multiplying them out. It works this way: ask for a number ...
1
vote
3answers
105 views

Ruby - Prime Number calculator

I need some feedback to figure out why I cant puts or print anything from my methods on the screen. This is a simple script I wrote to solve the problem of finding the 1001st prime number. Thanks def ...
-3
votes
2answers
90 views

Sieve of Eratosthanes on very high numbers to find prime factors [closed]

class Fixnum def prime? for i in 2..(n/2) return false if self%i == 0 end true end end def sieve(n) sieve = Hash.new(false) for i in 2..(n/2) unless ...
3
votes
1answer
62 views

Python 3.2 number theory library

I'm having trouble finding a usable python 3 number theory library. All the libraries I found are written for python version 2, or they're lacking the functionality that I am looking for. I require ...
-1
votes
2answers
123 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 ...
2
votes
1answer
55 views

My practicing with PHP sqrt does not work

I'm practicing algorithms creating the fastest possible prime generator I can think off. This is the working code I have up to date: $p = array(); function isPrime($i) { global $p; ...
1
vote
1answer
42 views

Python Primes Array Confusion

I have a small question about this python prime checking function. This is really dumb, but what does the [2] in the in the for n in [2] do? I understand the formula to check for primes, no problem, ...
1
vote
1answer
102 views

Understanding Prime Test

I have this Haskell script: prime :: Integer -> Bool prime 1 = False prime n = [ x | x <- [2..n-1], n `mod` x == 0 ] == [] What does the first x in the last line stand for? Why can I ...
-1
votes
0answers
116 views

Obfuscation through inexplicable algorithm :-) [closed]

Can anyone analyze this algorithm and say why it generates such output? What kind of magic is here? local s, p, m = 2, 1, {[4] = true} print(s) repeat repeat p = p + 2 local d, v, ok ...
1
vote
3answers
58 views

Finding a Prime Sieve Inconsistency in Python

I'm attempting to learn python and I thought trying to develop my own prime sieve would be an interesting problem for the afternoon. When required thus far, I would just import a version of the Sieve ...
0
votes
1answer
139 views

Sum of prime numbers below 2000000?

How do i find the sum of all primes below 2 million? Project Euler 10th question, http://projecteuler.net/problem=10. I tested my code for below 10 and works like a charm. But below 2 million does not ...
3
votes
1answer
92 views

How many prime numbers are there (available for RSA encryption)?

Am I mistaken in thinking that the security of RSA encryption, in general, is limited by the amount of known prime numbers? To crack (or create) a private key, one has to combine the right pair of ...
0
votes
2answers
150 views

How to find prime factors of a number in c++?

I am attempting project euler question number 3, and I don't get the desired result. My logic: List all the factors of the number 13195 and save them in an array. Check if each number in the array ...
-1
votes
3answers
119 views

How to print all prime numbers in c++?

I'm trying to print all the prime numbers in series, the code I ended up with is below, instead of printing all primes it prints random numbers, Some are prime and some are not :/ Why is that so? ...
-1
votes
2answers
81 views

Finding the 10001st Prime Number - Project Euler [closed]

I am trying to find the 10,001th prime number. I have looked at other code people have written , but I don't really understand what it means. I have written some code in JavaScript in which I tried to ...
0
votes
2answers
87 views

Sum of primes for large numbers

I've been working on this problem for some time now and I can't figure out why I keep getting an overflow error. The code works fine to a point then doesn't work for larger values. I have tested it ...
0
votes
1answer
42 views

This number is prime & secure?

I need to create a 2048bits prime number. I have used this code. SecureRandom rnd = new SecureRandom(); int certainty = 100000000; BigInteger p = new BigInteger(2048, certainty, rnd); This number ...
1
vote
3answers
91 views

Factorizing a number in python

Here's my code: def factorize(n): sieve = [True] * (n + 1) for x in range(2, int(len(sieve) ** 0.5) + 1): if sieve[x]: for i in range(x + x, len(sieve), x): ...
-1
votes
2answers
93 views

brute force BigInteger Factorization

as you can tell by the title, I am working on trying to brute force the factorization of large integers whose factors are 2 primes. I was wondering if there was a way to use a for loop inside a for ...
2
votes
1answer
220 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 ...
2
votes
2answers
70 views

Understand what is going on with my Prime Numbers Calculation and Prime Numbers JFrame [closed]

I would like to figure out what is going wrong with my code and help understanding what is going on with my Prime Numbers Calculation and Prime Numbers JFrame. For some reason, the calculations one ...
0
votes
3answers
409 views

Java Prime Numbers

I am trying to make a prime number list. I have coded it, but it only tells me that the prime numbers of 1 - 100 is 1. I am not sure why that is happening. I also want to make a JFrame for it. import ...
-2
votes
4answers
166 views

Check if number(s) is prime in C++

I'm doing an online challenge and came across one problem! I have worked out the logic on paper, but it seems my problem doesn't work. All it does is return 0 as output. My code so far: #include ...
0
votes
1answer
46 views

Prime Number Determination Javascript

I am creating a external javascript file. This is for homework. What I am supposed to do is determine if the number that the user enters in is a prime number or not, and displays a message if it is a ...
-3
votes
2answers
85 views

How can i shorten this algorithim for finding Prime Numbers? [closed]

Just wondering if anyone could help me on this. The code is working but Is it possible to shorten/remove some unnecessary code from this Algorithim while keeping its method the same? I have already ...
0
votes
2answers
272 views

Print first N prime numbers in Common Lisp

I am making a Common Lisp function to print the first N prime numbers. So far I've managed to write this code: ;globals (setf isprime 1) ;if 1 then its a prime, 0 if not. (setf from 1) ;start ...
0
votes
1answer
149 views

Wrong Answer for Project Euler 50

I am attempting Problem 50 of project euler. The prime 41, can be written as the sum of six consecutive primes: 41 = 2 + 3 + 5 + 7 + 11 + 13 This is the longest sum of consecutive primes ...
4
votes
4answers
640 views

Check if number is prime number

I would just like to ask if this is a correct way of checking if number is prime or not? because I read that 0 and 1 are NOT a prime number. int num1; Console.WriteLine("Accept number:"); num1 = ...
1
vote
2answers
186 views

Multithreaded prime number generator

I have: input1: n to generate primes up to input2: no of threads to generate primes I implemented this and it works, but the problem is, that each thread generates its own list of primes [2, n]. ...
1
vote
2answers
57 views

Why prolog outputs a weird tree-like list?

In this Prolog code I intend to list the first N primes, (...) biggerPrime(N,P) :- isPrime(N), P is N, !. biggerPrime(N,P) :- N1 = N+1, biggerPrime(N1,P). primeListAcc(0,A,R,R) ...

1 2 3 4 5 13