Problem 007
Forum rules
As your posts will be visible to the general public you are requested to be thoughtful in not posting anything that might explicitly give away how to solve a particular problem.
This forum is NOT meant to discuss solution methods for a problem.
See also the topics:
Don't post any spoilers
Comments, questions and clarifications about PE problems.
As your posts will be visible to the general public you are requested to be thoughtful in not posting anything that might explicitly give away how to solve a particular problem.
This forum is NOT meant to discuss solution methods for a problem.
In particular don't post any code fragments or results.
Don't start begging others to give partial answers to problems
Don't ask for hints how to solve a problem
Don't start a new topic for a problem if there already exists one
Don't start begging others to give partial answers to problems
Don't ask for hints how to solve a problem
Don't start a new topic for a problem if there already exists one
See also the topics:
Don't post any spoilers
Comments, questions and clarifications about PE problems.
- hk
- Administrator
- Posts: 12831
- Joined: Sun Mar 26, 2006 10:34 am
- Location: Haren, Netherlands
Re: Problem 007
We've heard that before.
More often than not it turns out that people found the 1001st prime, while the 10001st prime is asked for.
More often than not it turns out that people found the 1001st prime, while the 10001st prime is asked for.

War ruins the life and health of untold numbers of innocent children.
-
coziroyc
- Posts: 2
- Joined: Wed Jul 20, 2011 2:36 pm
Re: Problem 007
You're right. I found the 1001st prime. I thought I read the instructions carefully. Oops.
-
machine_easy2
- Posts: 11
- Joined: Tue Jul 12, 2011 7:23 am
Re: Problem 007
I keep getting a few numbers passing through my sieve that are not prime. In my list of "the first 30 primes" I'm getting an incorrect 27 and 95....
Any help??
Any help??
-
machine_easy2
- Posts: 11
- Joined: Tue Jul 12, 2011 7:23 am
Re: Problem 007
Better loop control.machine_easy2 wrote:I keep getting a few numbers passing through my sieve that are not prime. In my list of "the first 30 primes" I'm getting an incorrect 27 and 95....
Any help??
-
mavritivs
- Posts: 4
- Joined: Fri Jun 01, 2012 4:03 am
Re: Problem 007
I am using Fermat's Little Theorem for this, but I am getting an error. For prime #69, it lists "341". I double checked this with another script of mine to check for primality. It says 341 is not prime. Could anyone tell me what I am doing wrong or look at my code for mistakes? I really cannot seem to find one.
Thanks.
Thanks.

-
mdean
- Posts: 206
- Joined: Tue Aug 02, 2011 2:05 am
Re: Problem 007
You probably shouldn't be posting how you attempt to solve the problem. I have a feeling you might find this relevant though: http://en.wikipedia.org/wiki/Fermat%27s ... eudoprimes

-
mavritivs
- Posts: 4
- Joined: Fri Jun 01, 2012 4:03 am
Re: Problem 007
I only mention Fermat since it was already mentioned in the beginning of this thread.
Thanks a lot for that link, I do not know how I overlooked that section on wikipedia.
Thanks a lot for that link, I do not know how I overlooked that section on wikipedia.

-
thundre
- Posts: 356
- Joined: Sun Mar 27, 2011 10:01 am
Re: Problem 007
Fermat's Little Theorem is more useful for proving which numbers are composite than which are prime. It can be used as a first check, so you can avoid the more time-consuming full check in most cases.mavritivs wrote:I am using Fermat's Little Theorem for this, but I am getting an error. For prime #69, it lists "341". I double checked this with another script of mine to check for primality. It says 341 is not prime. Could anyone tell me what I am doing wrong or look at my code for mistakes? I really cannot seem to find one.
See http://en.wikipedia.org/wiki/Carmichael_number
341 = 11 * 31, so it is composite.
2 and all powers thereof are Fermat liars in base 341. But 3^341 % 341 = 168.

-
pcworx
- Posts: 6
- Joined: Wed Nov 27, 2013 3:52 pm
Re: Problem 007
Man I hope this isn't giving away too much on the solution, but seeing how there are several prime number problems I just wanted to verify one thing. Once your divisor is 1/2 of the potentialprime number there isn't any reason to keep dividing right? I mean let's say 101 is a prime, once your divisor test is up to 51 there is no point in going on up higher with your divisor because the result will be less than 2? I am new to math and programming so forgive me if I have done wrong....just a dumb American here.
- nicolas.patrois
- Posts: 118
- Joined: Fri Jul 26, 2013 4:54 pm
- Contact:
Re: Problem 007
Beware, 341 is not a Carmichael number. Carmichael numbers are pseudo primes in any prime base.
The first Carmichael number is 561.
The first Carmichael number is 561.

-
LarryBlake
- Posts: 100
- Joined: Sat Aug 29, 2009 8:49 pm
Re: Problem 007
pcworx, you're right that you don't need to test above half the number. You can actually stop testing sooner than that if you think about it a little further.

-
Liquid25677
- Posts: 9
- Joined: Thu May 26, 2022 4:07 pm
Re: Problem 007
I've been trying to solve this problem for some days but I can't seem to write a working code. I've seen people here saying to send a PM , anyone can help? I can't understand where I'm wrong.
- SaxTenor
- Posts: 18
- Joined: Mon Sep 28, 2020 11:05 am
- Location: Quebec City, QC, Canada
Re: Problem 007
The Sieve of Eratosthenes may helps you.Liquid25677 wrote: Thu May 26, 2022 4:44 pm I've been trying to solve this problem for some days but I can't seem to write a working code. I've seen people here saying to send a PM , anyone can help? I can't understand where I'm wrong.

-
linkman8912
- Posts: 1
- Joined: Thu Sep 07, 2023 12:58 am
Re: Problem 007
I've made a sieve that works, but it doesn't print anything when I set the highest number to sieve to 46350 (I'm using c++.) I don't know if this number is something special in binary, or something related to the integer limit, but it doesn't seem like it. I know better than to post code, but please tell me if more details are needed, and I can pm them.
-
Koder256
- Posts: 1
- Joined: Fri Dec 01, 2023 10:57 am
Re: Problem 007, Python
This, I think is the most efficient code without using external modules
[Codes removed by Admin.
Please note that this forum is meant only for clarification of the problems. The proper place to post your solution is the discussion thread for this problem.]
[Codes removed by Admin.
Please note that this forum is meant only for clarification of the problems. The proper place to post your solution is the discussion thread for this problem.]