A non-composite sequenceComplement of saturated setPrimality test using Chebyshev and Legendre...

Rationale to prefer local variables over instance variables?

Short story about cities being connected by a conveyor belt

Inorganic chemistry handbook with reaction lists

Are small insurances worth it?

Unfamiliar notation in Diabelli's "Duet in D" for piano

Does an unused member variable take up memory?

Vector-transposing function

Cycles on the torus

How do you make a gun that shoots melee weapons and/or swords?

Is there a logarithm base for which the logarithm becomes an identity function?

What is the purpose of a disclaimer like "this is not legal advice"?

What exactly is the meaning of "fine wine"?

Why restrict private health insurance?

3.5% Interest Student Loan or use all of my savings on Tuition?

Why is there an extra space when I type "ls" on the Desktop?

Has a sovereign Communist government ever run, and conceded loss, on a fair election?

Mixed Feelings - What am I

Giving a career talk in my old university, how prominently should I tell students my salary?

Is it appropriate to ask a former professor to order a library book for me through ILL?

Is this Paypal Github SDK reference really a dangerous site?

Use Mercury as quenching liquid for swords?

Too soon for a plot twist?

Professor forcing me to attend a conference, I can't afford even with 50% funding

Who has more? Ireland or Iceland?



A non-composite sequence


Complement of saturated setPrimality test using Chebyshev and Legendre polynomialsCongruence satisfied by primes and only by primesLucas polynomials and primality testingA congruence holding for primes $p equiv 1,11 pmod {12}$A congruence with the Euler's totient function and sum of divisors functionA congruence with the Euler's totient function and number of divisors functionA congruence involving Mersenne numbersPrimality criterionJacobi polynomials and primality testingA conjecture on consecutive odd composite numbers













6












$begingroup$


Can you provide a counterexample for a claim given below?



Inspired by Puzzle 937 I have formulated the following claim:




For any $n > 0$ let $B = p_1 cdot p_2 cdot .... cdot p_n$ be the product of the first $n$ primes. Let $X$ be the smallest number, bigger than $B^k/p_{n+1}$ and coprime to $B^k$, where $k$ is a fixed positive integer. Define the number $m_n$ as $X cdot p_{n+1}-B^k$ , then $m_n$ is either $1$ or prime.




Try it for yourself!



I was searching for counterexample using the following PARI/GP code:



CE(lb,ub,k)={
for(n=lb,ub,
B=prod(i=1,n,prime(i));
X=ceil((B^k)/prime(n+1));
while(gcd(X,B^k)!=1,
X++);
m=X*prime(n+1)-B^k;
if(!(ispseudoprime(m) || m==1),print(m)))
}









share|cite|improve this question











$endgroup$












  • $begingroup$
    @babanaCats, for $B^1=30$, aren't both $p_{n+1}$ and $X$ equal?
    $endgroup$
    – Collag3n
    yesterday












  • $begingroup$
    It is true, in fact you can further generalize. See answer below!
    $endgroup$
    – BananaCats
    yesterday
















6












$begingroup$


Can you provide a counterexample for a claim given below?



Inspired by Puzzle 937 I have formulated the following claim:




For any $n > 0$ let $B = p_1 cdot p_2 cdot .... cdot p_n$ be the product of the first $n$ primes. Let $X$ be the smallest number, bigger than $B^k/p_{n+1}$ and coprime to $B^k$, where $k$ is a fixed positive integer. Define the number $m_n$ as $X cdot p_{n+1}-B^k$ , then $m_n$ is either $1$ or prime.




Try it for yourself!



I was searching for counterexample using the following PARI/GP code:



CE(lb,ub,k)={
for(n=lb,ub,
B=prod(i=1,n,prime(i));
X=ceil((B^k)/prime(n+1));
while(gcd(X,B^k)!=1,
X++);
m=X*prime(n+1)-B^k;
if(!(ispseudoprime(m) || m==1),print(m)))
}









share|cite|improve this question











$endgroup$












  • $begingroup$
    @babanaCats, for $B^1=30$, aren't both $p_{n+1}$ and $X$ equal?
    $endgroup$
    – Collag3n
    yesterday












  • $begingroup$
    It is true, in fact you can further generalize. See answer below!
    $endgroup$
    – BananaCats
    yesterday














6












6








6


2



$begingroup$


Can you provide a counterexample for a claim given below?



Inspired by Puzzle 937 I have formulated the following claim:




For any $n > 0$ let $B = p_1 cdot p_2 cdot .... cdot p_n$ be the product of the first $n$ primes. Let $X$ be the smallest number, bigger than $B^k/p_{n+1}$ and coprime to $B^k$, where $k$ is a fixed positive integer. Define the number $m_n$ as $X cdot p_{n+1}-B^k$ , then $m_n$ is either $1$ or prime.




Try it for yourself!



I was searching for counterexample using the following PARI/GP code:



CE(lb,ub,k)={
for(n=lb,ub,
B=prod(i=1,n,prime(i));
X=ceil((B^k)/prime(n+1));
while(gcd(X,B^k)!=1,
X++);
m=X*prime(n+1)-B^k;
if(!(ispseudoprime(m) || m==1),print(m)))
}









share|cite|improve this question











$endgroup$




Can you provide a counterexample for a claim given below?



Inspired by Puzzle 937 I have formulated the following claim:




For any $n > 0$ let $B = p_1 cdot p_2 cdot .... cdot p_n$ be the product of the first $n$ primes. Let $X$ be the smallest number, bigger than $B^k/p_{n+1}$ and coprime to $B^k$, where $k$ is a fixed positive integer. Define the number $m_n$ as $X cdot p_{n+1}-B^k$ , then $m_n$ is either $1$ or prime.




Try it for yourself!



I was searching for counterexample using the following PARI/GP code:



CE(lb,ub,k)={
for(n=lb,ub,
B=prod(i=1,n,prime(i));
X=ceil((B^k)/prime(n+1));
while(gcd(X,B^k)!=1,
X++);
m=X*prime(n+1)-B^k;
if(!(ispseudoprime(m) || m==1),print(m)))
}






sequences-and-series elementary-number-theory prime-numbers examples-counterexamples recreational-mathematics






share|cite|improve this question















share|cite|improve this question













share|cite|improve this question




share|cite|improve this question








edited yesterday









BananaCats

9,26452659




9,26452659










asked 2 days ago









Peđa TerzićPeđa Terzić

7,73122672




7,73122672












  • $begingroup$
    @babanaCats, for $B^1=30$, aren't both $p_{n+1}$ and $X$ equal?
    $endgroup$
    – Collag3n
    yesterday












  • $begingroup$
    It is true, in fact you can further generalize. See answer below!
    $endgroup$
    – BananaCats
    yesterday


















  • $begingroup$
    @babanaCats, for $B^1=30$, aren't both $p_{n+1}$ and $X$ equal?
    $endgroup$
    – Collag3n
    yesterday












  • $begingroup$
    It is true, in fact you can further generalize. See answer below!
    $endgroup$
    – BananaCats
    yesterday
















$begingroup$
@babanaCats, for $B^1=30$, aren't both $p_{n+1}$ and $X$ equal?
$endgroup$
– Collag3n
yesterday






$begingroup$
@babanaCats, for $B^1=30$, aren't both $p_{n+1}$ and $X$ equal?
$endgroup$
– Collag3n
yesterday














$begingroup$
It is true, in fact you can further generalize. See answer below!
$endgroup$
– BananaCats
yesterday




$begingroup$
It is true, in fact you can further generalize. See answer below!
$endgroup$
– BananaCats
yesterday










1 Answer
1






active

oldest

votes


















1












$begingroup$

I propose a generalization. Let $B = p_1^{k_1} cdots p_n^{k_n} $ where $k_i gt 0$ are fixed, except let $a = p_{n+1}$ be the same power (namely $1$) as in the original problem.



The set $S = { x in Bbb{Z} : (x, B) = 1}$ forms a saturated mult. closed subset of the ring $Bbb{Z}$.



This is true since if $1 in S$ and if $x, y in S$ then their product is also such that $(xy, B) = 1$ and if $xy in S$ then clearly $(x, B) = 1 = (y, B)$ since taking factors introduces nothing new.





If you minimize $x gt dfrac{B}{a}f, x in S$ then you equivalently minimize $ax gt B, ax in aS$ and since $k$ is fixed that is the same as minimizing $ax +$ any constant or $ax - B^k gt 0$ or ask what is the minimum positive element of $aS - B$?



If $n = ay - B$ is any element then if $n in aS$ we have $n = az$ or $a(y-z) = B$ or $a mid B$ a contradiction, thus $n in Bbb{Z} setminus aS$ and we have $aS - Bsubset Bbb{Z} setminus aS$.






Note that $aS = (a) cap S$.




True since clearly $aS subset (a)$ and since $a in S$ by definition ie. $(a, B) = 1$ we have $aS subset S$. Going the other direction: $x in S$ and $x = ay$ means that $y in S$ since $S$ is saturated! And so $x in aS$.





Thus we've proved that $n in (p_1) cup cdots cup (p_n) cup Bbb{Z}setminus(a) $ since by the link in the first sentence the complement of $S$ must be the union of the prime ideals making up $B$.



But $n notin (p_1) cup cdots (p_n)$ since other wise $ax = n + B in (p_i)$ for some $p_i$ contradicting $(B, x) = 1$. Thus $n in (Bbb{Z}setminus (a)) cap S = S'$ which is another saturated multiplicative set since $a$ is prime.






$S'$ is a saturated multiplicative set properly contained in $S$.




Thus you have a map $f(w) = aw - B : S to S'$ which is clearly injective and strictly increasing.






If you minimize the expression $f(x) gt 0, x in S$ then you've minimized $x$, and if you minimize $x in S$ such that $f(x) gt 0$ then $f(x)$ is a minimum in $f(S)$.




Proof. Exercise.





We have that $f(S) subset S'$ but we don't have the other direction. Let's show that $f(S)$ has sufficient properties for our purposes.



If $f(x)f(y) in f(S) subset S' subset S$, then if $f(x) notin f(S)$ then $x notin S$ so that $ax notin S$ by saturation, meaning $ax in Bbb{Z}setminus S = (p_1) cup cdots cup (p_n)$. Thus, since those primes make up the factors of $B$,
$ax = p_i z$ for some $i=1..n, z in Bbb{Z}$ and so $f(x) = ax - B in (p_i)$, which means that $p_i mid f(x)f(y) in f(S) subset S$ a multiplicative generated by strictly non-$B$ prime factors. This is a gross contradiction! Therefore




$f(S)$ is a "saturated subset" of $S'$.




The set $f(S)_{ gt 0} equiv { f(x) gt 0 : x in S}$ has the property that if $x, y gt 0$ and $xy in f(S)_{gt 0}$ then $x, y in f(S)_{gt 0}$ so its saturated in that sense.





If $1 in f(S)_{gt 0}$ then the minimum sought is indeed $1$ and we're done so assume that $1$ is not part of this saturated subset. Now if $xy in f(S)_{gt 0}$ and $x, y neq 1$ then we must have that $x, y$ are both in $f(S)_{gt 0}$ by saturation. This means that:




The minimal element of $f(S)_{gt 0}$ is indeed prime since if it were not, you could take a smaller element.




$square$



Corollary. Since $f(S) subset S' = Bbb{Z} setminus (p_1) cap cdots cap Bbb{Z}setminus (p_{n+1})$ we have that $min f(S)_{geq 0}$ is either $1$ or a prime $p_m gt p_{n+1}$.





Since the exponents give you "a lot of freedom", I conjecture that:
$$min ((aS - {p_1^{k_1} cdots p_{n}^{k_n} : k_i gt 0 })cap [2, infty)) = p_{n+2}$$, or the smallest prime attainable over any of the nonzero exponents is the next prime.






share|cite|improve this answer











$endgroup$













    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
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3137704%2fa-non-composite-sequence%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









    1












    $begingroup$

    I propose a generalization. Let $B = p_1^{k_1} cdots p_n^{k_n} $ where $k_i gt 0$ are fixed, except let $a = p_{n+1}$ be the same power (namely $1$) as in the original problem.



    The set $S = { x in Bbb{Z} : (x, B) = 1}$ forms a saturated mult. closed subset of the ring $Bbb{Z}$.



    This is true since if $1 in S$ and if $x, y in S$ then their product is also such that $(xy, B) = 1$ and if $xy in S$ then clearly $(x, B) = 1 = (y, B)$ since taking factors introduces nothing new.





    If you minimize $x gt dfrac{B}{a}f, x in S$ then you equivalently minimize $ax gt B, ax in aS$ and since $k$ is fixed that is the same as minimizing $ax +$ any constant or $ax - B^k gt 0$ or ask what is the minimum positive element of $aS - B$?



    If $n = ay - B$ is any element then if $n in aS$ we have $n = az$ or $a(y-z) = B$ or $a mid B$ a contradiction, thus $n in Bbb{Z} setminus aS$ and we have $aS - Bsubset Bbb{Z} setminus aS$.






    Note that $aS = (a) cap S$.




    True since clearly $aS subset (a)$ and since $a in S$ by definition ie. $(a, B) = 1$ we have $aS subset S$. Going the other direction: $x in S$ and $x = ay$ means that $y in S$ since $S$ is saturated! And so $x in aS$.





    Thus we've proved that $n in (p_1) cup cdots cup (p_n) cup Bbb{Z}setminus(a) $ since by the link in the first sentence the complement of $S$ must be the union of the prime ideals making up $B$.



    But $n notin (p_1) cup cdots (p_n)$ since other wise $ax = n + B in (p_i)$ for some $p_i$ contradicting $(B, x) = 1$. Thus $n in (Bbb{Z}setminus (a)) cap S = S'$ which is another saturated multiplicative set since $a$ is prime.






    $S'$ is a saturated multiplicative set properly contained in $S$.




    Thus you have a map $f(w) = aw - B : S to S'$ which is clearly injective and strictly increasing.






    If you minimize the expression $f(x) gt 0, x in S$ then you've minimized $x$, and if you minimize $x in S$ such that $f(x) gt 0$ then $f(x)$ is a minimum in $f(S)$.




    Proof. Exercise.





    We have that $f(S) subset S'$ but we don't have the other direction. Let's show that $f(S)$ has sufficient properties for our purposes.



    If $f(x)f(y) in f(S) subset S' subset S$, then if $f(x) notin f(S)$ then $x notin S$ so that $ax notin S$ by saturation, meaning $ax in Bbb{Z}setminus S = (p_1) cup cdots cup (p_n)$. Thus, since those primes make up the factors of $B$,
    $ax = p_i z$ for some $i=1..n, z in Bbb{Z}$ and so $f(x) = ax - B in (p_i)$, which means that $p_i mid f(x)f(y) in f(S) subset S$ a multiplicative generated by strictly non-$B$ prime factors. This is a gross contradiction! Therefore




    $f(S)$ is a "saturated subset" of $S'$.




    The set $f(S)_{ gt 0} equiv { f(x) gt 0 : x in S}$ has the property that if $x, y gt 0$ and $xy in f(S)_{gt 0}$ then $x, y in f(S)_{gt 0}$ so its saturated in that sense.





    If $1 in f(S)_{gt 0}$ then the minimum sought is indeed $1$ and we're done so assume that $1$ is not part of this saturated subset. Now if $xy in f(S)_{gt 0}$ and $x, y neq 1$ then we must have that $x, y$ are both in $f(S)_{gt 0}$ by saturation. This means that:




    The minimal element of $f(S)_{gt 0}$ is indeed prime since if it were not, you could take a smaller element.




    $square$



    Corollary. Since $f(S) subset S' = Bbb{Z} setminus (p_1) cap cdots cap Bbb{Z}setminus (p_{n+1})$ we have that $min f(S)_{geq 0}$ is either $1$ or a prime $p_m gt p_{n+1}$.





    Since the exponents give you "a lot of freedom", I conjecture that:
    $$min ((aS - {p_1^{k_1} cdots p_{n}^{k_n} : k_i gt 0 })cap [2, infty)) = p_{n+2}$$, or the smallest prime attainable over any of the nonzero exponents is the next prime.






    share|cite|improve this answer











    $endgroup$


















      1












      $begingroup$

      I propose a generalization. Let $B = p_1^{k_1} cdots p_n^{k_n} $ where $k_i gt 0$ are fixed, except let $a = p_{n+1}$ be the same power (namely $1$) as in the original problem.



      The set $S = { x in Bbb{Z} : (x, B) = 1}$ forms a saturated mult. closed subset of the ring $Bbb{Z}$.



      This is true since if $1 in S$ and if $x, y in S$ then their product is also such that $(xy, B) = 1$ and if $xy in S$ then clearly $(x, B) = 1 = (y, B)$ since taking factors introduces nothing new.





      If you minimize $x gt dfrac{B}{a}f, x in S$ then you equivalently minimize $ax gt B, ax in aS$ and since $k$ is fixed that is the same as minimizing $ax +$ any constant or $ax - B^k gt 0$ or ask what is the minimum positive element of $aS - B$?



      If $n = ay - B$ is any element then if $n in aS$ we have $n = az$ or $a(y-z) = B$ or $a mid B$ a contradiction, thus $n in Bbb{Z} setminus aS$ and we have $aS - Bsubset Bbb{Z} setminus aS$.






      Note that $aS = (a) cap S$.




      True since clearly $aS subset (a)$ and since $a in S$ by definition ie. $(a, B) = 1$ we have $aS subset S$. Going the other direction: $x in S$ and $x = ay$ means that $y in S$ since $S$ is saturated! And so $x in aS$.





      Thus we've proved that $n in (p_1) cup cdots cup (p_n) cup Bbb{Z}setminus(a) $ since by the link in the first sentence the complement of $S$ must be the union of the prime ideals making up $B$.



      But $n notin (p_1) cup cdots (p_n)$ since other wise $ax = n + B in (p_i)$ for some $p_i$ contradicting $(B, x) = 1$. Thus $n in (Bbb{Z}setminus (a)) cap S = S'$ which is another saturated multiplicative set since $a$ is prime.






      $S'$ is a saturated multiplicative set properly contained in $S$.




      Thus you have a map $f(w) = aw - B : S to S'$ which is clearly injective and strictly increasing.






      If you minimize the expression $f(x) gt 0, x in S$ then you've minimized $x$, and if you minimize $x in S$ such that $f(x) gt 0$ then $f(x)$ is a minimum in $f(S)$.




      Proof. Exercise.





      We have that $f(S) subset S'$ but we don't have the other direction. Let's show that $f(S)$ has sufficient properties for our purposes.



      If $f(x)f(y) in f(S) subset S' subset S$, then if $f(x) notin f(S)$ then $x notin S$ so that $ax notin S$ by saturation, meaning $ax in Bbb{Z}setminus S = (p_1) cup cdots cup (p_n)$. Thus, since those primes make up the factors of $B$,
      $ax = p_i z$ for some $i=1..n, z in Bbb{Z}$ and so $f(x) = ax - B in (p_i)$, which means that $p_i mid f(x)f(y) in f(S) subset S$ a multiplicative generated by strictly non-$B$ prime factors. This is a gross contradiction! Therefore




      $f(S)$ is a "saturated subset" of $S'$.




      The set $f(S)_{ gt 0} equiv { f(x) gt 0 : x in S}$ has the property that if $x, y gt 0$ and $xy in f(S)_{gt 0}$ then $x, y in f(S)_{gt 0}$ so its saturated in that sense.





      If $1 in f(S)_{gt 0}$ then the minimum sought is indeed $1$ and we're done so assume that $1$ is not part of this saturated subset. Now if $xy in f(S)_{gt 0}$ and $x, y neq 1$ then we must have that $x, y$ are both in $f(S)_{gt 0}$ by saturation. This means that:




      The minimal element of $f(S)_{gt 0}$ is indeed prime since if it were not, you could take a smaller element.




      $square$



      Corollary. Since $f(S) subset S' = Bbb{Z} setminus (p_1) cap cdots cap Bbb{Z}setminus (p_{n+1})$ we have that $min f(S)_{geq 0}$ is either $1$ or a prime $p_m gt p_{n+1}$.





      Since the exponents give you "a lot of freedom", I conjecture that:
      $$min ((aS - {p_1^{k_1} cdots p_{n}^{k_n} : k_i gt 0 })cap [2, infty)) = p_{n+2}$$, or the smallest prime attainable over any of the nonzero exponents is the next prime.






      share|cite|improve this answer











      $endgroup$
















        1












        1








        1





        $begingroup$

        I propose a generalization. Let $B = p_1^{k_1} cdots p_n^{k_n} $ where $k_i gt 0$ are fixed, except let $a = p_{n+1}$ be the same power (namely $1$) as in the original problem.



        The set $S = { x in Bbb{Z} : (x, B) = 1}$ forms a saturated mult. closed subset of the ring $Bbb{Z}$.



        This is true since if $1 in S$ and if $x, y in S$ then their product is also such that $(xy, B) = 1$ and if $xy in S$ then clearly $(x, B) = 1 = (y, B)$ since taking factors introduces nothing new.





        If you minimize $x gt dfrac{B}{a}f, x in S$ then you equivalently minimize $ax gt B, ax in aS$ and since $k$ is fixed that is the same as minimizing $ax +$ any constant or $ax - B^k gt 0$ or ask what is the minimum positive element of $aS - B$?



        If $n = ay - B$ is any element then if $n in aS$ we have $n = az$ or $a(y-z) = B$ or $a mid B$ a contradiction, thus $n in Bbb{Z} setminus aS$ and we have $aS - Bsubset Bbb{Z} setminus aS$.






        Note that $aS = (a) cap S$.




        True since clearly $aS subset (a)$ and since $a in S$ by definition ie. $(a, B) = 1$ we have $aS subset S$. Going the other direction: $x in S$ and $x = ay$ means that $y in S$ since $S$ is saturated! And so $x in aS$.





        Thus we've proved that $n in (p_1) cup cdots cup (p_n) cup Bbb{Z}setminus(a) $ since by the link in the first sentence the complement of $S$ must be the union of the prime ideals making up $B$.



        But $n notin (p_1) cup cdots (p_n)$ since other wise $ax = n + B in (p_i)$ for some $p_i$ contradicting $(B, x) = 1$. Thus $n in (Bbb{Z}setminus (a)) cap S = S'$ which is another saturated multiplicative set since $a$ is prime.






        $S'$ is a saturated multiplicative set properly contained in $S$.




        Thus you have a map $f(w) = aw - B : S to S'$ which is clearly injective and strictly increasing.






        If you minimize the expression $f(x) gt 0, x in S$ then you've minimized $x$, and if you minimize $x in S$ such that $f(x) gt 0$ then $f(x)$ is a minimum in $f(S)$.




        Proof. Exercise.





        We have that $f(S) subset S'$ but we don't have the other direction. Let's show that $f(S)$ has sufficient properties for our purposes.



        If $f(x)f(y) in f(S) subset S' subset S$, then if $f(x) notin f(S)$ then $x notin S$ so that $ax notin S$ by saturation, meaning $ax in Bbb{Z}setminus S = (p_1) cup cdots cup (p_n)$. Thus, since those primes make up the factors of $B$,
        $ax = p_i z$ for some $i=1..n, z in Bbb{Z}$ and so $f(x) = ax - B in (p_i)$, which means that $p_i mid f(x)f(y) in f(S) subset S$ a multiplicative generated by strictly non-$B$ prime factors. This is a gross contradiction! Therefore




        $f(S)$ is a "saturated subset" of $S'$.




        The set $f(S)_{ gt 0} equiv { f(x) gt 0 : x in S}$ has the property that if $x, y gt 0$ and $xy in f(S)_{gt 0}$ then $x, y in f(S)_{gt 0}$ so its saturated in that sense.





        If $1 in f(S)_{gt 0}$ then the minimum sought is indeed $1$ and we're done so assume that $1$ is not part of this saturated subset. Now if $xy in f(S)_{gt 0}$ and $x, y neq 1$ then we must have that $x, y$ are both in $f(S)_{gt 0}$ by saturation. This means that:




        The minimal element of $f(S)_{gt 0}$ is indeed prime since if it were not, you could take a smaller element.




        $square$



        Corollary. Since $f(S) subset S' = Bbb{Z} setminus (p_1) cap cdots cap Bbb{Z}setminus (p_{n+1})$ we have that $min f(S)_{geq 0}$ is either $1$ or a prime $p_m gt p_{n+1}$.





        Since the exponents give you "a lot of freedom", I conjecture that:
        $$min ((aS - {p_1^{k_1} cdots p_{n}^{k_n} : k_i gt 0 })cap [2, infty)) = p_{n+2}$$, or the smallest prime attainable over any of the nonzero exponents is the next prime.






        share|cite|improve this answer











        $endgroup$



        I propose a generalization. Let $B = p_1^{k_1} cdots p_n^{k_n} $ where $k_i gt 0$ are fixed, except let $a = p_{n+1}$ be the same power (namely $1$) as in the original problem.



        The set $S = { x in Bbb{Z} : (x, B) = 1}$ forms a saturated mult. closed subset of the ring $Bbb{Z}$.



        This is true since if $1 in S$ and if $x, y in S$ then their product is also such that $(xy, B) = 1$ and if $xy in S$ then clearly $(x, B) = 1 = (y, B)$ since taking factors introduces nothing new.





        If you minimize $x gt dfrac{B}{a}f, x in S$ then you equivalently minimize $ax gt B, ax in aS$ and since $k$ is fixed that is the same as minimizing $ax +$ any constant or $ax - B^k gt 0$ or ask what is the minimum positive element of $aS - B$?



        If $n = ay - B$ is any element then if $n in aS$ we have $n = az$ or $a(y-z) = B$ or $a mid B$ a contradiction, thus $n in Bbb{Z} setminus aS$ and we have $aS - Bsubset Bbb{Z} setminus aS$.






        Note that $aS = (a) cap S$.




        True since clearly $aS subset (a)$ and since $a in S$ by definition ie. $(a, B) = 1$ we have $aS subset S$. Going the other direction: $x in S$ and $x = ay$ means that $y in S$ since $S$ is saturated! And so $x in aS$.





        Thus we've proved that $n in (p_1) cup cdots cup (p_n) cup Bbb{Z}setminus(a) $ since by the link in the first sentence the complement of $S$ must be the union of the prime ideals making up $B$.



        But $n notin (p_1) cup cdots (p_n)$ since other wise $ax = n + B in (p_i)$ for some $p_i$ contradicting $(B, x) = 1$. Thus $n in (Bbb{Z}setminus (a)) cap S = S'$ which is another saturated multiplicative set since $a$ is prime.






        $S'$ is a saturated multiplicative set properly contained in $S$.




        Thus you have a map $f(w) = aw - B : S to S'$ which is clearly injective and strictly increasing.






        If you minimize the expression $f(x) gt 0, x in S$ then you've minimized $x$, and if you minimize $x in S$ such that $f(x) gt 0$ then $f(x)$ is a minimum in $f(S)$.




        Proof. Exercise.





        We have that $f(S) subset S'$ but we don't have the other direction. Let's show that $f(S)$ has sufficient properties for our purposes.



        If $f(x)f(y) in f(S) subset S' subset S$, then if $f(x) notin f(S)$ then $x notin S$ so that $ax notin S$ by saturation, meaning $ax in Bbb{Z}setminus S = (p_1) cup cdots cup (p_n)$. Thus, since those primes make up the factors of $B$,
        $ax = p_i z$ for some $i=1..n, z in Bbb{Z}$ and so $f(x) = ax - B in (p_i)$, which means that $p_i mid f(x)f(y) in f(S) subset S$ a multiplicative generated by strictly non-$B$ prime factors. This is a gross contradiction! Therefore




        $f(S)$ is a "saturated subset" of $S'$.




        The set $f(S)_{ gt 0} equiv { f(x) gt 0 : x in S}$ has the property that if $x, y gt 0$ and $xy in f(S)_{gt 0}$ then $x, y in f(S)_{gt 0}$ so its saturated in that sense.





        If $1 in f(S)_{gt 0}$ then the minimum sought is indeed $1$ and we're done so assume that $1$ is not part of this saturated subset. Now if $xy in f(S)_{gt 0}$ and $x, y neq 1$ then we must have that $x, y$ are both in $f(S)_{gt 0}$ by saturation. This means that:




        The minimal element of $f(S)_{gt 0}$ is indeed prime since if it were not, you could take a smaller element.




        $square$



        Corollary. Since $f(S) subset S' = Bbb{Z} setminus (p_1) cap cdots cap Bbb{Z}setminus (p_{n+1})$ we have that $min f(S)_{geq 0}$ is either $1$ or a prime $p_m gt p_{n+1}$.





        Since the exponents give you "a lot of freedom", I conjecture that:
        $$min ((aS - {p_1^{k_1} cdots p_{n}^{k_n} : k_i gt 0 })cap [2, infty)) = p_{n+2}$$, or the smallest prime attainable over any of the nonzero exponents is the next prime.







        share|cite|improve this answer














        share|cite|improve this answer



        share|cite|improve this answer








        edited yesterday

























        answered yesterday









        BananaCatsBananaCats

        9,26452659




        9,26452659






























            draft saved

            draft discarded




















































            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.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3137704%2fa-non-composite-sequence%23new-answer', 'question_page');
            }
            );

            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







            Popular posts from this blog

            Magento 2 - Add success message with knockout Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Success / Error message on ajax request$.widget is not a function when loading a homepage after add custom jQuery on custom themeHow can bind jQuery to current document in Magento 2 When template load by ajaxRedirect page using plugin in Magento 2Magento 2 - Update quantity and totals of cart page without page reload?Magento 2: Quote data not loaded on knockout checkoutMagento 2 : I need to change add to cart success message after adding product into cart through pluginMagento 2.2.5 How to add additional products to cart from new checkout step?Magento 2 Add error/success message with knockoutCan't validate Post Code on checkout page

            Fil:Tokke komm.svg

            Where did Arya get these scars? Unicorn Meta Zoo #1: Why another podcast? Announcing the arrival of Valued Associate #679: Cesar Manara Favourite questions and answers from the 1st quarter of 2019Why did Arya refuse to end it?Has the pronunciation of Arya Stark's name changed?Has Arya forgiven people?Why did Arya Stark lose her vision?Why can Arya still use the faces?Has the Narrow Sea become narrower?Does Arya Stark know how to make poisons outside of the House of Black and White?Why did Nymeria leave Arya?Why did Arya not kill the Lannister soldiers she encountered in the Riverlands?What is the current canonical age of Sansa, Bran and Arya Stark?