login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A205480 G.f: exp( Sum_{n>=1} x^n/n * Product_{d|n} (1 + d*x^(n/d))^d ). 8
1, 1, 2, 4, 10, 27, 76, 242, 852, 3016, 11262, 47004, 204761, 894673, 4134909, 20370101, 101904474, 521459464, 2813783214, 15616060213, 87143803196, 502477538546, 3039137586808, 18763942581733, 116737580008529, 742909490860950, 4846956807516551 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Note: exp( Sum_{n>=1} x^n/n * Product_{d|n} (1 + x^(n/d))^d ) does not yield an integer series.
LINKS
FORMULA
Logarithmic derivative yields A205481.
EXAMPLE
G.f.: A(x) = 1 + x + 2*x^2 + 4*x^3 + 10*x^4 + 27*x^5 + 76*x^6 + 242*x^7 + ...
By definition:
log(A(x)) = x*(1+x) + x^2*(1+x^2)*(1+2*x)^2/2 + x^3*(1+x^3)*(1+3*x)^3/3 + x^4*(1+x^4)*(1+2*x^2)^2*(1+4*x)^4/4 + x^5*(1+x^5)*(1+5*x)^5/5 + x^6*(1+x^6)*(1+2*x^3)^2*(1+3*x^2)^3*(1+6*x)^6/6 + ...
Explicitly,
log(A(x)) = x + 3*x^2/2 + 7*x^3/3 + 23*x^4/4 + 76*x^5/5 + 249*x^6/6 + 974*x^7/7 + 4151*x^8/8 + 16558*x^9/9 + ... + A205481(n)*x^n/n + ...
MATHEMATICA
max = 30; s = Exp[Sum[(x^n/n)*Product[(1+d*x^(n/d))^d, {d, Divisors[n]}], {n, 1, max}]] + O[x]^max; CoefficientList[s , x] (* Jean-François Alcover, Dec 23 2015 *)
PROG
(PARI) {a(n)=polcoeff(exp(sum(m=1, n+1, x^m/m*exp(sumdiv(m, d, d*log(1+d*x^(m/d)+x*O(x^n)))))), n)}
CROSSREFS
Sequence in context: A220829 A339838 A104383 * A108523 A157003 A245900
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jan 27 2012
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 04:14 EDT 2024. Contains 371918 sequences. (Running on oeis4.)