OFFSET
1,2
LINKS
Albert Nijenhuis, Solution to Problem 5932, Amer. Math. Monthly, 82 (1975), pp. 86-87.
R. P. Stanley, Problem 5932, Amer. Math. Monthly, 80 (1973), p. 949.
FORMULA
E.g.f. x*exp(Sum( x^n/(n*phi(n)), n=1..infinity )) (phi is Euler's totient function). a(n) = n* A003510(n-1). - Vladeta Jovovic, Apr 15 2006
MATHEMATICA
yy[nn_] := CoefficientList[Normal[Series[Exp[Sum[x^n t[n]/(n), {n, 1, nn}]], {x, 0, nn}]], x]; zz[nn_] := Table[Simplify[yy[nn][[m]] m! ], {m, 1, nn}]; zz[10] (* will then give the first 10 values *)
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Herbert S. Wilf, Dec 08 2003
EXTENSIONS
More terms from Vladeta Jovovic, Apr 15 2006
STATUS
approved