Let $\phi(n)$ denote the Euler totient function of $n $.
Then let $N$ be a number such that $\phi(N)$ divides $N$ . Also let $I_1= \frac{N}{\phi(N)}$ which is defined as the "Second order Index of Beauty of $N$ ".
Then prove that - For every number $I_1$ there exists a number $N$ such that $I_1$ is the second order index of beauty of $N$.
2026-03-30 06:43:02.1774852982
On
A conjecture on $\phi(n)$
339 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
2
There are 2 best solutions below
0
On
Not an answer, but this won't work as a comment. Here's the requested code to have a look-see in a slow, brute force way in Python.
def totient(n):
if n == 1: return 1
return sum(d * mobius(n / d) for d in range(1, n+1) if n % d == 0)
def mobius(n):
result, i = 1, 2
while n >= i:
if n % i == 0:
n = n / i
if n % i == 0:
return 0
result = -result
i = i + 1
return result
results = set() #sets store only unique items, so the output is cleaner
for n in range(1,[large number]):
if float(n)/float(totient(n))==float(n/totient(n)): #integer check
results.add(n/totient(n))
for item in results:
print str(item) #shows what we got
Update: Up to $100000$, we get $\{1,2,3\}$.
I am sorry, but the conjecture is really false: In fact, there are no other integer values for $N/\varphi(N)$ other then $1,2,3$. Reason:
The function $\varphi(N)$ is a multiplicative number-theoretic function. Let $N = \prod p_i^{k_i}$ with pairwise distinct primes $p_i$ dividing $N$, then $$\frac{N}{\varphi(N)} = \frac{\prod p_i^{k_i}}{\prod (p_i-1)p_i^{k_i-1}} = \frac{\prod p_i }{ \prod (p_i-1)}.$$
Now compare prime factors of the numerator and the denominator:
EDIT
By the way, as this was discussed alongside: Here is my recommendation for calculation of many values of $\varphi(N)$: use Sieves.