OFFSET
0,2
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..1000
EXAMPLE
G.f.: A(x) = 1 + 2*x + 6*x^2 + 12*x^3 + 38*x^4 + 76*x^5 + 188*x^6 + ...
log(A(x)) = 2*x + 8*x^2/2 + 8*x^3/3 + 64*x^4/4 + 32*x^5/5 + 128*x^6/6 + 128*x^7/7 + ...
MATHEMATICA
nmax = 150; a[n_]:= SeriesCoefficient[Series[Exp[Sum[2^(k + IntegerExponent[k, 2])*q^k/k, {k, 1, nmax}]], {q, 0, nmax}], n]; Table[a[n], {n, 0, 50}] (* G. C. Greubel, Jul 04 2018 *)
PROG
(PARI) {a(n)=local(L=sum(m=1, n, 2^(m+valuation(m, 2))*x^m/m)+x*O(x^n)); polcoeff(exp(L), n)}
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jul 07 2009
STATUS
approved