A294618 a(n) is the number of solutions of x^2 = eulerphi(x * m) where x is A293928(n).
2, 2, 3, 1, 4, 2, 5, 1, 1, 4, 6, 3, 3, 5, 1, 7, 6, 4, 1, 7, 1, 3, 1, 8, 10, 5, 1, 1, 9, 3, 8, 4, 1, 9, 1, 13, 1, 7, 4, 3, 1, 12, 5, 14, 1, 7, 1, 1, 2, 10, 2, 18, 1, 1, 1, 9, 9, 3, 1, 5, 1, 14, 7, 22, 3, 1
Offset: 1
Examples
The first 1 is a term since there is only 1 solution when phi(m)=6. The solution is m=18. The first 5 is a term since there are 5 solutions when phi(m)=16. These are 32, 34, 40, 48, and 60. From _Michel Marcus_, Nov 08 2017: (Start) Illustration of first few terms: 1: [1, 2], 2: [4, 6], 4: [8, 10, 12], 6: [18], 8: [16, 20, 24, 30], 12: [36, 42], 16: [32, 34, 40, 48, 60], 18: [54], 20: [50], 24: [72, 78, 84, 90], 32: [64, 68, 80, 96, 102, 120], ... (End)
Links
- Max Alekseyev, PARI scripts for various problems
Programs
-
PARI
isok(n) = {iv = invphi(n); if (#iv, return (sum(m=1, #iv, n^2 == eulerphi(n*iv[m])))); return (0);} lista(nn) = {for (n=1, nn, if (v = isok(n), print1(v, ", ")););} \\ \\ using the invphi script by Max Alekseyev; Michel Marcus, Nov 07 2017
Formula
0 < (phi(m)^(k+1) = phi(phi(m)^k*m)), k >= 1, m >= 1.
Comments