A293928 Totients phi(m) having one or more solutions m to phi(m)^2 = phi(phi(m)*m).
1, 2, 4, 6, 8, 12, 16, 18, 20, 24, 32, 36, 40, 48, 54, 64, 72, 80, 84, 96, 100, 108, 120, 128, 144, 160, 162, 168, 192, 200, 216, 240, 252, 256, 272, 288, 312, 320, 324, 336, 360, 384, 400, 432, 440, 480, 486, 500, 504, 512, 544, 576, 588, 600, 624, 640, 648, 672, 684
Offset: 1
Keywords
Examples
96 is a term since 96^2 = phi(96*288), with m=288 where phi(288) = 96.
Links
- Max Alekseyev, PARI/GP Scripts for Miscellaneous Math Problems (invphi.gp).
Programs
-
PARI
isok(n) = {my(iv = invphi(n)); if (#iv, for (m = 1, #iv, if (n^2 == eulerphi(n*iv[m]), return (1)););); return (0);} \\ using the invphi script by Max Alekseyev; Michel Marcus, Nov 01 2017
Extensions
More terms from Michel Marcus, Oct 24 2017
Definition simplified by Max Alekseyev, Dec 03 2024
Comments