close
login
A305678
Solutions x of uphi(x)/x = 2/3, where uphi is the unitary phi function (A047994).
5
3, 36, 504, 720, 1404, 19656, 28080, 44640, 181440, 195840, 1740960, 7637760, 46085760, 65862720, 105960960, 12884705280, 16729130880, 22826833920, 38463828480, 502503505920, 579112934400, 890246522880, 1898911311897600, 3377622411509760, 11836489266201600, 131727274048880640, 55340232208243752960, 1470385157696842383360, 1662284902687282298880, 2158269056121506365440
OFFSET
1,1
COMMENTS
Apparently, these is a single x, 6, such that uphi(x)/x = 1/3.
LINKS
Tomohiro Yamada, An analog of perfect numbers involving the unitary totient function, arXiv:1806.00647 [math.NT], 2018.
EXAMPLE
uphi(3) = 2 so uphi(3)/3 = 2/3;
uphi(36) = 24 so uphi(36)/36 = 2/3.
MATHEMATICA
uphi[n_] := Times @@ ((First[#]^Last[#] - 1) & /@ FactorInteger[n]); uphi[1] = 1; Select[Range[200000], uphi[#] == 2*#/3 &] (* Amiram Eldar, Oct 21 2025 *)
PROG
(PARI) uphi(n) = my(f=factor(n)~); prod(i=1, #f, f[1, i]^f[2, i]-1);
isok(n) = uphi(n) == 2*n/3; \\ Michel Marcus, Oct 21 2025
CROSSREFS
Cf. A047994 (uphi), A030163 (uphi(x)/x = 1/2), A318842, A319313.
Sequence in context: A199258 A262465 A322491 * A233196 A368048 A245114
KEYWORD
nonn
AUTHOR
Michel Marcus, Jun 08 2018
EXTENSIONS
Missing a(21), a(23), a(25), a(28)-a(29) inserted by Max Alekseyev, Oct 20 2025
STATUS
approved