OFFSET
0,2
COMMENTS
phi(n) = A000010(n) is the Euler totient function of n.
EXAMPLE
G.f.: A(x) = 1 + 2*x + 4*x^2 + 10*x^3 + 21*x^4 + 236*x^5 + 470*x^6 +...
log(A(x)) = 2*x + 4*x^2/2 + 14*x^3/3 + 20*x^4/4 + 1002*x^5/5 + 40*x^6/6 +...
PROG
(PARI) {a(n)=polcoeff(exp(sum(m=1, n, sumdiv(m, d, 2*eulerphi(d^eulerphi(d)))*x^m/m)+x*O(x^n)), n)}
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jul 10 2010
STATUS
approved