When a number $n$ does not have primitive roots modulo n, $Pr(n)$, it is possible to generate the set $M$ of those numbers $m$ whose order $ord_n(m)$ is the maximum multiplicative order of $k$ in $\Bbb Z/n \Bbb Z$, also named as the maximum possible order mod n depending on the reference you use. The definition of the order $ord_n(m)$ of an integer m modulo n (or multiplicative order of $k$ in $\Bbb Z/n \Bbb Z$) is here (click).
Update Note: as explained in the answers, $Max(ord_n(m))$ is the maximum possible value of the Carmichael function in [1,n].
$M=\{\ m: ord_n(m) = Max(ord_n(k))\ ,\ k \in [1,n]\ \}$
I have observed two interesting properties and I would like to ask about them, this is the first one:
(1) $\forall n\ /\ \not\exists Pr(n)\ ,\ Max(ord_n(k))\mid\ \frac{\varphi(n)}{2}$
I guess this is a known property of the numbers that do not have primitive roots: $Max(ord_n(k))$ seems to have the same property as a quadratic residue modulo n, so it is a factor of $\frac{\varphi(n)}{2}$ (in other words, it can divide the half of the value of the totient of $n$).
The second one is very related with the following conjecture in this question about the Totient funcion (link)
(c) $\forall n\ge3$, if $(\frac{\varphi(n)}{2}+1)\ \mid\ n\ $ then $(\frac{\varphi(n)}{2}+1)\in \Bbb P$
When I replace in (c) according to property (1) $\frac{\varphi(n)}{2} = Max(ord_n(k))$ then the following property (2) is true in all cases:
(2) $\forall n\ /\ \not\exists Pr(n)\ ,\ $ if $\ (Max(ord_n(k))+1)\mid n\ ,$ then $\ (Max(ord_n(k))+1)\in\Bbb P$
Meaning that for all those numbers $n$ without primitive root modulo n, if the maximum possible order $Max(ord_n(k))$ plus one divides to $n$, then $Max(ord_n(k))+1$ is always a prime number.
E.g.:
$n=12, M=\{5,7,11\}$
$\forall m \in M\ ord_{12}(m)=Max(ord_{12}(k))=2$ and
$Max(ord_{12}(k)) +1 =2+1=3\mid 12\ $ , thus $3 \in \Bbb P$
$n=104, M=\{7,11,15,19,33,37,41,45,59,63,67,71,85,89,93,97\}$
$\forall m \in M\ ord_{104}(m)=Max(ord_{104}(k))=12$ and
$Max(ord_{104}(k)) +1 =12+1=13\mid 104\ $ , thus $13 \in \Bbb P$
I have tested with Python in the interval [1,1000] (it gets very slow for $n \gt 1000$, I need to try PARI) and no counterexamples are found, all the results are prime numbers.
These are the first prime numbers obtained:
$\{3,5,5,7,3,7,5,11,13,5,7,11,17,13,7,19,5,7,13,11,17,23...\}$
Coming from the $n$'s:
$\{12,15,20,21,24,28,30,33,39,40,42,44,51,52,56,57,60,63,65,66,68,69...\}$
I would like to share with you the following questions:
- Is my proposed statement (2) already known or trivial?
- Is there a counterexample of it?
Thank you!
Statement (1) is fairly straightforward to prove once you notice that $\max_k(\text{ord}_n(k))$ is (by definition) the Carmichael function $\lambda(n)$. In particular, it is known that if $$ n = p_1^{e_1} \dotsm p_k^{e_k} $$ with $p_1,\dotsc,p_k$ distinct primes, then $$ \lambda(n) = \text{lcm}\big(\lambda(p_1^{e_1}), \dotsc , \lambda(p_k^{e_k})\big) $$ Further, we know that $\lambda(p^e) = \varphi(p^e)$ for every $p > 2$ and for $p=2, e \leq 2$, while $\lambda(2^e) = \frac{1}{2} \varphi(2^e)$ for every $e > 2$, where $\varphi$ is Euler's totient function.
In particular, observe that there are primitive roots modulo $n$ if and only if $n$ is of the form $2,4,p^e$, or $2p^e$ for some prime $p > 2$. Hence if there are no primitive roots modulo $n$ then $$n = m p^{e_p} q^{e_q}$$ for some distinct odd primes $p,q$, some integer $m$ coprime with $p$ and $q$, and $e_p,e_q \geq 1$. Since $2$ divides $\varphi(p^e)$ for every odd prime $p$, it immediately follows that $\lambda(n) \mid \frac{1}{2} \varphi(n)$.
DanaJ already pointed out a counterexample to statement (2). The error is that (2) doesn't follow from (1) and (c), independently of the truth of (c): you substituted $\lambda(n) \color{red}{=} \frac{1}{2} \varphi(n)$ in (c), but (1) merely tells you that $\lambda(n)$ divides $\frac{1}{2} \varphi(n)$.
In general it isn't true that if $k + 1 \mid n$ then $d + 1 \mid n$ as well for every divisor of $k$. For example, just think of $k = 6$ and $n = 7$.
More to the point: observe that if $n$ is square-free then $$ a \equiv a^{\lambda(n) + 1} \pmod{n} $$ for every $a \in \Bbb{Z}/a\Bbb{Z}$. Hence, if $\lambda(n)+1 \mid n$ we also have $$ a \equiv a^{\lambda(n) + 1} \pmod{\lambda(n) + 1} $$ for every $a \in \Bbb{Z}/a\Bbb{Z}$.
Now, observe that the converse of Fermat's little theorem fails to hold precisely for Carmichael numbers. Hence if there is a square-free number $n$ for which $\lambda(n) + 1$ is a Carmichael number that divides $n$, then we have a counterexample for (2). Indeed, we are not disappointed, because $561$ (as in DanaJ's example) is the first Carmichael number!