How many integers are there that are not divisible by any prime larger than 20 and not divisible by the...
What happens if a geocentric model of the world were correct?
"Table" method for expanding brackets vs "each term in the first bracket gets multiplied by each term in the second bracket"
Why increase or decrease rudder when using elevator in turns?
Is Time Machine also backing up my Windwos data from Bootcamp?
Is there any restriction in entering the South American countries multiple times in one year?
Pass a bash variable to python script
Is it reasonable to ask candidates to create a profile on Google Scholar?
Exists infinitely many as a numerical-quantifier
How should I tell a professor the answer to something he doesn't know?
Electrophilic substitution of benzene with conc. HNO₃ and HNO₂
Do you say "good game" after a game in which your opponent played poorly?
"Distance" vs "a distance"
counter in hexadecimal base
Do businesses save their customers' credit card information until the payment is finalized?
Can you set fire to beer barrels?
Can digital computers understand infinity?
How much do sea levels rise due to thermal expansion?
What is a recommended strategy on exercises in a mathematical textbook at graduate level?
Displaying characteristics of the Hero in a console game
Is Schrodinger's Cat itself an observer?
Some interesting and elementary topics with connections to the representation theory?
Extra battery in the gap of an HDD
33 Months on Death Row
A replacement for NextPermutation in Combinatorica
How many integers are there that are not divisible by any prime larger than 20 and not divisible by the square of any prime?
Why does Euclid write “Prime numbers are more than any assigned multitude of prime numbers.”The Largest Prime Less Than the Square of a PrimeHow many numbers have more primes than half that number?Proof that there exists a larger prime than prime number P, which is the largest of a finite set of primes?Can it be proven/disproven that there are highly composite numbers that prime-factorize into larger primes such as $9999991$?Finding the smallest prime that is larger than $10^{100}$Numbers that are NOT prime powers.
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{
margin-bottom:0;
}
.everyonelovesstackoverflow{position:absolute;height:1px;width:1px;opacity:0;top:0;left:0;pointer-events:none;}
$begingroup$
I tackled the problem in the following way but i'm not sure if i'm correct.
I need the count of the numbers that have in their prime factorization only primes p such that $p lt 20$ and those numbers can't be more than once in the prime factorization (right?)
So, the amount of numbers that can be expressed this way are all the subsets of the set ${2,3,5,7,11,13,17,19} = 2^8$.
Correct me if I'm wrong.
number-theory prime-numbers divisibility prime-factorization
New contributor
$endgroup$
add a comment
|
$begingroup$
I tackled the problem in the following way but i'm not sure if i'm correct.
I need the count of the numbers that have in their prime factorization only primes p such that $p lt 20$ and those numbers can't be more than once in the prime factorization (right?)
So, the amount of numbers that can be expressed this way are all the subsets of the set ${2,3,5,7,11,13,17,19} = 2^8$.
Correct me if I'm wrong.
number-theory prime-numbers divisibility prime-factorization
New contributor
$endgroup$
4
$begingroup$
If the question was asking about natural numbers, you would be correct.
$endgroup$
– Don Thousand
8 hours ago
add a comment
|
$begingroup$
I tackled the problem in the following way but i'm not sure if i'm correct.
I need the count of the numbers that have in their prime factorization only primes p such that $p lt 20$ and those numbers can't be more than once in the prime factorization (right?)
So, the amount of numbers that can be expressed this way are all the subsets of the set ${2,3,5,7,11,13,17,19} = 2^8$.
Correct me if I'm wrong.
number-theory prime-numbers divisibility prime-factorization
New contributor
$endgroup$
I tackled the problem in the following way but i'm not sure if i'm correct.
I need the count of the numbers that have in their prime factorization only primes p such that $p lt 20$ and those numbers can't be more than once in the prime factorization (right?)
So, the amount of numbers that can be expressed this way are all the subsets of the set ${2,3,5,7,11,13,17,19} = 2^8$.
Correct me if I'm wrong.
number-theory prime-numbers divisibility prime-factorization
number-theory prime-numbers divisibility prime-factorization
New contributor
New contributor
edited 8 hours ago
David G. Stork
15.6k4 gold badges20 silver badges40 bronze badges
15.6k4 gold badges20 silver badges40 bronze badges
New contributor
asked 8 hours ago
Andrés Felipe Vargas FontechaAndrés Felipe Vargas Fontecha
292 bronze badges
292 bronze badges
New contributor
New contributor
4
$begingroup$
If the question was asking about natural numbers, you would be correct.
$endgroup$
– Don Thousand
8 hours ago
add a comment
|
4
$begingroup$
If the question was asking about natural numbers, you would be correct.
$endgroup$
– Don Thousand
8 hours ago
4
4
$begingroup$
If the question was asking about natural numbers, you would be correct.
$endgroup$
– Don Thousand
8 hours ago
$begingroup$
If the question was asking about natural numbers, you would be correct.
$endgroup$
– Don Thousand
8 hours ago
add a comment
|
1 Answer
1
active
oldest
votes
$begingroup$
Your method is perfectly correct, but if it is actually about integers then you need to include negatives as well to have twice as many.
I suspect this is not the case however since then if you said "primes $p<20$" you'd probably have to include negative primes as well, in which case there would be infinitely many.
$endgroup$
add a comment
|
Your Answer
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/4.0/"u003ecc by-sa 4.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
});
}
});
Andrés Felipe Vargas Fontecha is a new contributor. Be nice, and check out our Code of Conduct.
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%2f3383342%2fhow-many-integers-are-there-that-are-not-divisible-by-any-prime-larger-than-20-a%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
Your method is perfectly correct, but if it is actually about integers then you need to include negatives as well to have twice as many.
I suspect this is not the case however since then if you said "primes $p<20$" you'd probably have to include negative primes as well, in which case there would be infinitely many.
$endgroup$
add a comment
|
$begingroup$
Your method is perfectly correct, but if it is actually about integers then you need to include negatives as well to have twice as many.
I suspect this is not the case however since then if you said "primes $p<20$" you'd probably have to include negative primes as well, in which case there would be infinitely many.
$endgroup$
add a comment
|
$begingroup$
Your method is perfectly correct, but if it is actually about integers then you need to include negatives as well to have twice as many.
I suspect this is not the case however since then if you said "primes $p<20$" you'd probably have to include negative primes as well, in which case there would be infinitely many.
$endgroup$
Your method is perfectly correct, but if it is actually about integers then you need to include negatives as well to have twice as many.
I suspect this is not the case however since then if you said "primes $p<20$" you'd probably have to include negative primes as well, in which case there would be infinitely many.
edited 8 hours ago
answered 8 hours ago
Matt SamuelMatt Samuel
42.6k6 gold badges42 silver badges74 bronze badges
42.6k6 gold badges42 silver badges74 bronze badges
add a comment
|
add a comment
|
Andrés Felipe Vargas Fontecha is a new contributor. Be nice, and check out our Code of Conduct.
Andrés Felipe Vargas Fontecha is a new contributor. Be nice, and check out our Code of Conduct.
Andrés Felipe Vargas Fontecha is a new contributor. Be nice, and check out our Code of Conduct.
Andrés Felipe Vargas Fontecha is a new contributor. Be nice, and check out our Code of Conduct.
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.
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%2f3383342%2fhow-many-integers-are-there-that-are-not-divisible-by-any-prime-larger-than-20-a%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
4
$begingroup$
If the question was asking about natural numbers, you would be correct.
$endgroup$
– Don Thousand
8 hours ago