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!)
A196959 E.g.f. satisfies: A(x) = Sum_{n>=0} 1/n! * Sum_{k=0..n} (-1)^(n-k) * C(n,k) * (1 + x*A(x)^(2*k))^k. 1
1, 1, 9, 193, 6721, 326001, 20316937, 1548374129, 139576777921, 14530808439073, 1715928199384521, 226652340142349793, 33113449456084235905, 5302086923264289694225, 923349950199153833740105, 173761214485224395469845521, 35139709415689684107278235265 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
E.g.f. satisfies: A(x) = Sum_{n>=0} A(x)^(2*n^2) * exp(A(x)^(2*n) - 1)*x^n/n!.
EXAMPLE
E.g.f.: A(x) = 1 + x + 9*x^2/2! + 193*x^3/3! + 6721*x^4/4! + 326001*x^5/5! +...
where:
A(x) = 1 + A(x)^2*exp(A(x)^2 - 1)*x + A(x)^8*exp(A(x)^4 - 1)*x^2/2! + A(x)^18*exp(A(x)^6 - 1)*x^3/3! + A(x)^32*exp(A(x)^8 - 1)*x^4/4! +...
Also, e.g.f. A = A(x) satisfies:
A(x) = 1 - (1 - (1+x*A^2)) + 1/2!*(1 - 2*(1+x*A^2) + (1+x*A^4)^2) -
1/3!*(1 - 3*(1+x*A^2) + 3*(1+x*A^4)^2 - (1+x*A^6)^3) +
1/4!*(1 - 4*(1+x*A^2) + 6*(1+x*A^4)^2 - 4*(1+x*A^6)^3 + (1+x*A^8)^4) -
1/5!*(1 - 5*(1+x*A^2) + 10*(1+x*A^4)^2 - 10*(1+x*A^6)^3 + 5*(1+x*A^8)^4 - (1+x*A^10)^5) +-...
PROG
(PARI) {a(n)=local(A=1+x, X=x+x*O(x^n)); for(i=1, n, A=1+sum(m=1, n, exp(A^(2*m)-1)*A^(2*m^2)*X^m/m!)); n!*polcoeff(A, n)}
(PARI) {a(n)=local(A=1+x, X=x+x*O(x^n)); for(i=1, n, A=1+sum(m=1, n, 1/m!*sum(k=0, m, binomial(m, k)*(-1)^(m-k)*(1+X*A^(2*k))^k))); n!*polcoeff(A, n)}
CROSSREFS
Sequence in context: A189178 A297517 A116877 * A266485 A279132 A334777
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Oct 08 2011
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 19 18:05 EDT 2024. Contains 371798 sequences. (Running on oeis4.)