OFFSET
1,1
COMMENTS
It appears that all terms greater than 1 are distinct. This is true for all n <= 10^6.
LINKS
T. D. Noe, Table of n, a(n) for n = 1..1000
Max Alekseyev, PARI/GP Scripts for Miscellaneous Math Problems (invphi.gp).
David M. Bressoud, A Course in Computational Number Theory (web page), CNT.m, Computational Number Theory Mathematica package.
MATHEMATICA
Needs["CNT`"]; Table[Times @@ PhiInverse[n], {n, 100}]
PROG
(PARI) a(n) = vecprod(invphi(n)); \\ Amiram Eldar, Nov 15 2024, using Max Alekseyev's invphi.gp
CROSSREFS
KEYWORD
nonn,changed
AUTHOR
T. D. Noe, Oct 12 2012
STATUS
approved