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!)
A205502 G.f. satisfies: A(x) = exp( Sum_{n>=1} x^n/n * Product_{d|n} A(d*x^(n/d))^d ). 4
1, 1, 2, 6, 26, 153, 1230, 13364, 196940, 3964902, 110220876, 4272079445, 232593337728, 17882578732969, 1948605911230499, 301712214427188701, 66502429409739480660, 20895237675211683912974, 9368442364990639729658716, 5998494566458610304486161295 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
EXAMPLE
G.f.: A(x) = 1 + x + 2*x^2 + 6*x^3 + 26*x^4 + 153*x^5 + 1230*x^6 +...
By definition:
log(A(x)) = x*A(x) + x^2*A(x^2)*A(2*x)^2/2 + x^3*A(x^3)*A(3*x)^3/3 + x^4*A(x^4)*A(2*x^2)^2*A(4*x)^4/4 + x^5*A(x^5)*A(5*x)^5/5 + x^6*A(x^6)*A(2*x^3)^2*A(3*x^2)^3*A(6*x)^6/6 +...
Explicitly,
log(A(x)) = x + 3*x^2/2 + 13*x^3/3 + 79*x^4/4 + 616*x^5/5 + 6297*x^6/6 + 83518*x^7/7 + 1454615*x^8/8 +...
PROG
(PARI) {a(n)=local(A=1+x); for(i=1, n, A=exp(sum(m=1, n+1, x^m/m*exp(sumdiv(m, d, log(subst(A^d, x, d*x^(m/d) +x*O(x^n)))))))); polcoeff(A, n)}
CROSSREFS
Sequence in context: A003659 A159602 A032271 * A107104 A141761 A355206
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 23 18:16 EDT 2024. Contains 371916 sequences. (Running on oeis4.)