What is the form of odd prime numbers that their totients are co-prime with 5?
I'm trying to generate odd prime numbers such that their totients are co-prime with $5$. I want to know if what I'm doing is correct, or can be proven.
- Assume $2, 3$ and $5$ are primes
- Check if $10i - 3, 10i - 1, 10i + 3$ for $i$ greater or equal to $1$
now I did the following to get those forms and I wonder if the approach is correct:
Assume every integer is in the form of $5n-2, 5n-1, 5n, 5n+1, 5n+2$
substitute each of them with $k$ in $2k+1,$ and get $10n-3, 10n-1, 10n+1, 10n+3, 10n+5$
remove the forms that don't form prime for n in positive integers
and have the forms reduced to $10n-3, 10n-1, 10n+1, 10n+3$totient of a prime $p$ is $p-1,$ so subtract $1$ from each of the forms
and see if they're divisible by $5$ for every positive integer $n,
10n-4, 10n-2, 10n+2$.check numbers of the form $10i-3, 10i-1$ and $10i+3$ for primality.
prime-numbers divisibility greatest-common-divisor totient-function primality-test
|
show 2 more comments
I'm trying to generate odd prime numbers such that their totients are co-prime with $5$. I want to know if what I'm doing is correct, or can be proven.
- Assume $2, 3$ and $5$ are primes
- Check if $10i - 3, 10i - 1, 10i + 3$ for $i$ greater or equal to $1$
now I did the following to get those forms and I wonder if the approach is correct:
Assume every integer is in the form of $5n-2, 5n-1, 5n, 5n+1, 5n+2$
substitute each of them with $k$ in $2k+1,$ and get $10n-3, 10n-1, 10n+1, 10n+3, 10n+5$
remove the forms that don't form prime for n in positive integers
and have the forms reduced to $10n-3, 10n-1, 10n+1, 10n+3$totient of a prime $p$ is $p-1,$ so subtract $1$ from each of the forms
and see if they're divisible by $5$ for every positive integer $n,
10n-4, 10n-2, 10n+2$.check numbers of the form $10i-3, 10i-1$ and $10i+3$ for primality.
prime-numbers divisibility greatest-common-divisor totient-function primality-test
Your title doesn't match the body as it does not mention the totient. The title is easy to answer-any odd number that doesn't end in $5$. The totient of a prime $p$ is $p-1$, so you are asking for primes that are not $5k+1$. The easiest approach to this is just to pick numbers not $1 bmod 5$ and test for primality, but it appears you have other criteria.
– Ross Millikan
Jan 2 '17 at 15:46
@RossMillikan I updated the title, thanks. My cirteria are number to be odd, prime, and have its totient coprime with 5. So if there is a reduced for of numbers I'd appreciate that.
– Nae
Jan 2 '17 at 15:53
You are checking numbers that end in $7,9,1$ for primality, but not numbers that end in $3$. There is nothing wrong with those that end in $3$-as $13$ and $23$ seem to meet your requirement. I think you should just pick non $1 bmod 5$ numbers and check for primality. You can improve your odds by prefiltering for small factors, which is essentially what your ending digit does. You can pick $k bmod {210}$, for example with $k$ coprime to $2,3,5,7$ and generate numbers of the form $210m+k$
– Ross Millikan
Jan 2 '17 at 16:03
@RossMillikan I'm sorry, I've made a mistake on my last line, 10i+1 should be 10i+3 instead, and thus include 13, 23 etc. I don't understand the last part of your comment with k mod...
– Nae
Jan 2 '17 at 16:10
The effect of what you are doing is to preselect numbers that are not divisible by $2$ or $5$ and are not $1 bmod 5$. That will increase the density of acceptable primes in the numbers you test. You can do better still by making sure that the numbers you test are not multiples of $3$ or $7$ either, which is the point of my working $bmod {210}$
– Ross Millikan
Jan 2 '17 at 16:19
|
show 2 more comments
I'm trying to generate odd prime numbers such that their totients are co-prime with $5$. I want to know if what I'm doing is correct, or can be proven.
- Assume $2, 3$ and $5$ are primes
- Check if $10i - 3, 10i - 1, 10i + 3$ for $i$ greater or equal to $1$
now I did the following to get those forms and I wonder if the approach is correct:
Assume every integer is in the form of $5n-2, 5n-1, 5n, 5n+1, 5n+2$
substitute each of them with $k$ in $2k+1,$ and get $10n-3, 10n-1, 10n+1, 10n+3, 10n+5$
remove the forms that don't form prime for n in positive integers
and have the forms reduced to $10n-3, 10n-1, 10n+1, 10n+3$totient of a prime $p$ is $p-1,$ so subtract $1$ from each of the forms
and see if they're divisible by $5$ for every positive integer $n,
10n-4, 10n-2, 10n+2$.check numbers of the form $10i-3, 10i-1$ and $10i+3$ for primality.
prime-numbers divisibility greatest-common-divisor totient-function primality-test
I'm trying to generate odd prime numbers such that their totients are co-prime with $5$. I want to know if what I'm doing is correct, or can be proven.
- Assume $2, 3$ and $5$ are primes
- Check if $10i - 3, 10i - 1, 10i + 3$ for $i$ greater or equal to $1$
now I did the following to get those forms and I wonder if the approach is correct:
Assume every integer is in the form of $5n-2, 5n-1, 5n, 5n+1, 5n+2$
substitute each of them with $k$ in $2k+1,$ and get $10n-3, 10n-1, 10n+1, 10n+3, 10n+5$
remove the forms that don't form prime for n in positive integers
and have the forms reduced to $10n-3, 10n-1, 10n+1, 10n+3$totient of a prime $p$ is $p-1,$ so subtract $1$ from each of the forms
and see if they're divisible by $5$ for every positive integer $n,
10n-4, 10n-2, 10n+2$.check numbers of the form $10i-3, 10i-1$ and $10i+3$ for primality.
prime-numbers divisibility greatest-common-divisor totient-function primality-test
prime-numbers divisibility greatest-common-divisor totient-function primality-test
edited Nov 21 '18 at 15:02
Klangen
1,65911334
1,65911334
asked Jan 2 '17 at 15:42


Nae
1115
1115
Your title doesn't match the body as it does not mention the totient. The title is easy to answer-any odd number that doesn't end in $5$. The totient of a prime $p$ is $p-1$, so you are asking for primes that are not $5k+1$. The easiest approach to this is just to pick numbers not $1 bmod 5$ and test for primality, but it appears you have other criteria.
– Ross Millikan
Jan 2 '17 at 15:46
@RossMillikan I updated the title, thanks. My cirteria are number to be odd, prime, and have its totient coprime with 5. So if there is a reduced for of numbers I'd appreciate that.
– Nae
Jan 2 '17 at 15:53
You are checking numbers that end in $7,9,1$ for primality, but not numbers that end in $3$. There is nothing wrong with those that end in $3$-as $13$ and $23$ seem to meet your requirement. I think you should just pick non $1 bmod 5$ numbers and check for primality. You can improve your odds by prefiltering for small factors, which is essentially what your ending digit does. You can pick $k bmod {210}$, for example with $k$ coprime to $2,3,5,7$ and generate numbers of the form $210m+k$
– Ross Millikan
Jan 2 '17 at 16:03
@RossMillikan I'm sorry, I've made a mistake on my last line, 10i+1 should be 10i+3 instead, and thus include 13, 23 etc. I don't understand the last part of your comment with k mod...
– Nae
Jan 2 '17 at 16:10
The effect of what you are doing is to preselect numbers that are not divisible by $2$ or $5$ and are not $1 bmod 5$. That will increase the density of acceptable primes in the numbers you test. You can do better still by making sure that the numbers you test are not multiples of $3$ or $7$ either, which is the point of my working $bmod {210}$
– Ross Millikan
Jan 2 '17 at 16:19
|
show 2 more comments
Your title doesn't match the body as it does not mention the totient. The title is easy to answer-any odd number that doesn't end in $5$. The totient of a prime $p$ is $p-1$, so you are asking for primes that are not $5k+1$. The easiest approach to this is just to pick numbers not $1 bmod 5$ and test for primality, but it appears you have other criteria.
– Ross Millikan
Jan 2 '17 at 15:46
@RossMillikan I updated the title, thanks. My cirteria are number to be odd, prime, and have its totient coprime with 5. So if there is a reduced for of numbers I'd appreciate that.
– Nae
Jan 2 '17 at 15:53
You are checking numbers that end in $7,9,1$ for primality, but not numbers that end in $3$. There is nothing wrong with those that end in $3$-as $13$ and $23$ seem to meet your requirement. I think you should just pick non $1 bmod 5$ numbers and check for primality. You can improve your odds by prefiltering for small factors, which is essentially what your ending digit does. You can pick $k bmod {210}$, for example with $k$ coprime to $2,3,5,7$ and generate numbers of the form $210m+k$
– Ross Millikan
Jan 2 '17 at 16:03
@RossMillikan I'm sorry, I've made a mistake on my last line, 10i+1 should be 10i+3 instead, and thus include 13, 23 etc. I don't understand the last part of your comment with k mod...
– Nae
Jan 2 '17 at 16:10
The effect of what you are doing is to preselect numbers that are not divisible by $2$ or $5$ and are not $1 bmod 5$. That will increase the density of acceptable primes in the numbers you test. You can do better still by making sure that the numbers you test are not multiples of $3$ or $7$ either, which is the point of my working $bmod {210}$
– Ross Millikan
Jan 2 '17 at 16:19
Your title doesn't match the body as it does not mention the totient. The title is easy to answer-any odd number that doesn't end in $5$. The totient of a prime $p$ is $p-1$, so you are asking for primes that are not $5k+1$. The easiest approach to this is just to pick numbers not $1 bmod 5$ and test for primality, but it appears you have other criteria.
– Ross Millikan
Jan 2 '17 at 15:46
Your title doesn't match the body as it does not mention the totient. The title is easy to answer-any odd number that doesn't end in $5$. The totient of a prime $p$ is $p-1$, so you are asking for primes that are not $5k+1$. The easiest approach to this is just to pick numbers not $1 bmod 5$ and test for primality, but it appears you have other criteria.
– Ross Millikan
Jan 2 '17 at 15:46
@RossMillikan I updated the title, thanks. My cirteria are number to be odd, prime, and have its totient coprime with 5. So if there is a reduced for of numbers I'd appreciate that.
– Nae
Jan 2 '17 at 15:53
@RossMillikan I updated the title, thanks. My cirteria are number to be odd, prime, and have its totient coprime with 5. So if there is a reduced for of numbers I'd appreciate that.
– Nae
Jan 2 '17 at 15:53
You are checking numbers that end in $7,9,1$ for primality, but not numbers that end in $3$. There is nothing wrong with those that end in $3$-as $13$ and $23$ seem to meet your requirement. I think you should just pick non $1 bmod 5$ numbers and check for primality. You can improve your odds by prefiltering for small factors, which is essentially what your ending digit does. You can pick $k bmod {210}$, for example with $k$ coprime to $2,3,5,7$ and generate numbers of the form $210m+k$
– Ross Millikan
Jan 2 '17 at 16:03
You are checking numbers that end in $7,9,1$ for primality, but not numbers that end in $3$. There is nothing wrong with those that end in $3$-as $13$ and $23$ seem to meet your requirement. I think you should just pick non $1 bmod 5$ numbers and check for primality. You can improve your odds by prefiltering for small factors, which is essentially what your ending digit does. You can pick $k bmod {210}$, for example with $k$ coprime to $2,3,5,7$ and generate numbers of the form $210m+k$
– Ross Millikan
Jan 2 '17 at 16:03
@RossMillikan I'm sorry, I've made a mistake on my last line, 10i+1 should be 10i+3 instead, and thus include 13, 23 etc. I don't understand the last part of your comment with k mod...
– Nae
Jan 2 '17 at 16:10
@RossMillikan I'm sorry, I've made a mistake on my last line, 10i+1 should be 10i+3 instead, and thus include 13, 23 etc. I don't understand the last part of your comment with k mod...
– Nae
Jan 2 '17 at 16:10
The effect of what you are doing is to preselect numbers that are not divisible by $2$ or $5$ and are not $1 bmod 5$. That will increase the density of acceptable primes in the numbers you test. You can do better still by making sure that the numbers you test are not multiples of $3$ or $7$ either, which is the point of my working $bmod {210}$
– Ross Millikan
Jan 2 '17 at 16:19
The effect of what you are doing is to preselect numbers that are not divisible by $2$ or $5$ and are not $1 bmod 5$. That will increase the density of acceptable primes in the numbers you test. You can do better still by making sure that the numbers you test are not multiples of $3$ or $7$ either, which is the point of my working $bmod {210}$
– Ross Millikan
Jan 2 '17 at 16:19
|
show 2 more comments
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
return StackExchange.using("mathjaxEditing", function () {
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
});
});
}, "mathjax-editing");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "69"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f2080621%2fwhat-is-the-form-of-odd-prime-numbers-that-their-totients-are-co-prime-with-5%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Mathematics Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f2080621%2fwhat-is-the-form-of-odd-prime-numbers-that-their-totients-are-co-prime-with-5%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Your title doesn't match the body as it does not mention the totient. The title is easy to answer-any odd number that doesn't end in $5$. The totient of a prime $p$ is $p-1$, so you are asking for primes that are not $5k+1$. The easiest approach to this is just to pick numbers not $1 bmod 5$ and test for primality, but it appears you have other criteria.
– Ross Millikan
Jan 2 '17 at 15:46
@RossMillikan I updated the title, thanks. My cirteria are number to be odd, prime, and have its totient coprime with 5. So if there is a reduced for of numbers I'd appreciate that.
– Nae
Jan 2 '17 at 15:53
You are checking numbers that end in $7,9,1$ for primality, but not numbers that end in $3$. There is nothing wrong with those that end in $3$-as $13$ and $23$ seem to meet your requirement. I think you should just pick non $1 bmod 5$ numbers and check for primality. You can improve your odds by prefiltering for small factors, which is essentially what your ending digit does. You can pick $k bmod {210}$, for example with $k$ coprime to $2,3,5,7$ and generate numbers of the form $210m+k$
– Ross Millikan
Jan 2 '17 at 16:03
@RossMillikan I'm sorry, I've made a mistake on my last line, 10i+1 should be 10i+3 instead, and thus include 13, 23 etc. I don't understand the last part of your comment with k mod...
– Nae
Jan 2 '17 at 16:10
The effect of what you are doing is to preselect numbers that are not divisible by $2$ or $5$ and are not $1 bmod 5$. That will increase the density of acceptable primes in the numbers you test. You can do better still by making sure that the numbers you test are not multiples of $3$ or $7$ either, which is the point of my working $bmod {210}$
– Ross Millikan
Jan 2 '17 at 16:19