OFFSET
1,1
EXAMPLE
a(5) = 25 because 25^5 - 1 = 5^10 - 1 = 9765624 is a totient number and 25 is the least number with this property.
PROG
(PARI) a(n) = my(k=1); while(!istotient(k^n-1), k++); k;
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Altug Alkan, Feb 03 2017
EXTENSIONS
a(43)-a(52) from Ray Chandler, Feb 08 2017
a(53)-a(66) from Ray Chandler, Feb 09 2017
STATUS
approved