OFFSET
1,2
COMMENTS
Question: Does the multiplicity of any prime factor greater than 2 rise above the multiplicity of 2?
Answer: Yes, the first examples are 26617248, 117876384, 120115872, 124968096, 132433056, ... . - Amiram Eldar, Jan 20 2023
MATHEMATICA
q[n_] := CarmichaelLambda[n] == Times @@ (1 - First[#]& /@ FactorInteger[n]); q[1] = True; Select[Range[250], q] (* Amiram Eldar, Jan 17 2023 *)
PROG
(Python)
from sympy import divisors, mobius, reduced_totient
def a002322(n): return reduced_totient(n)
def a023900(n): return sum([d*mobius(d) for d in divisors(n)])
print([k for k in range(1, 254) if a002322(k) == a023900(k)])
(PARI) isok(k) = lcm(znstar(k)[2]) == sumdivmult(k, d, d*moebius(d)); \\ Michel Marcus, Jan 20 2023
CROSSREFS
KEYWORD
nonn
AUTHOR
Torlach Rush, Jan 16 2023
STATUS
approved