login
A039788
phi(a(n)) is equal to the product of (the sum of prime factors and the sum of exponents) of (a(n)).
0
9, 16, 35, 45, 150, 154, 234, 264
OFFSET
1,1
COMMENTS
Next term if it exists is greater than 10000000. - C. Ronaldo (aga_new_ac(AT)hotmail.com), Dec 29 2004
EXAMPLE
phi(45)=24, 45=3^2*5^1, (3+5)*(2+1)=24.
PROG
(PARI) for(n=1, 10000000, f=factor(n); l=#f[, 1]; if(eulerphi(n)==sum(i=1, l, f[i, 1])*sum(i=1, l, f[i, 2]), print1(n, ", "))) (Ronaldo)
CROSSREFS
Sequence in context: A369642 A162616 A153362 * A175652 A348233 A110833
KEYWORD
nonn,more
STATUS
approved