login
A362008
Numbers whose Euler's cototient is divisible by 9.
0
21, 27, 34, 54, 63, 68, 78, 81, 106, 108, 115, 117, 126, 129, 135, 136, 142, 147, 156, 162, 171, 178, 183, 186, 187, 189, 195, 205, 210, 212, 214, 216, 234, 237, 243, 252, 270, 272, 279, 284, 291, 295, 297, 312, 315, 324, 333, 342, 351, 356, 358, 372, 378
OFFSET
1,1
COMMENTS
Numbers k such that A010888(totient(k)) = A010888(k).
MATHEMATICA
Select[Range[2, 400], Mod[#-EulerPhi[#], 9]==0&] (* Harvey P. Dale, Jan 22 2024 *)
PROG
(Python)
from sympy import totient
def isok(n):
return (n-totient(n)) % 9 == 0
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Darío Clavijo, Apr 03 2023
STATUS
approved