OFFSET
1,6
LINKS
Antti Karttunen, Table of n, a(n) for n = 1..65537
EXAMPLE
For n = 6, it has three proper divisors: 1, 2, 3, and applying A000010 to these gives 1, 1 and 2, with just two distinct values, thus a(6) = 2.
PROG
(PARI) A319695(n) = { my(m=Map(), s, k=0); fordiv(n, d, if((d<n)&&!mapisdefined(m, s=eulerphi(d)), mapput(m, s, s); k++)); (k); };
CROSSREFS
KEYWORD
nonn
AUTHOR
Antti Karttunen, Oct 02 2018
STATUS
approved