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!)
A326553 E.g.f. A(x) satisfies: Sum_{n>=1} (-1)^(n-1) * A(x)^n / (n + A(x)^n) = x. 0
1, 3, 19, 189, 2521, 41813, 826099, 18889209, 489450841, 14142037665, 449838952795, 15587619260117, 583210749984409, 23380025164256829, 997331252199242083, 44981225190596283921, 2131771651553974931929, 105498794931132306727769, 5415121471957856287745611, 286003536194104676920620909, 15383978962252356122447259865 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
E.g.f.: Series_Reversion( Sum_{n>=1} (-1)^(n-1) * x^n / (n + x^n) ).
EXAMPLE
E.g.f.: A(x) = x + 3*x^2/2! + 19*x^3/3! + 189*x^4/4! + 2521*x^5/5! + 41813*x^6/6! + 826099*x^7/7! + 18889209*x^8/8! + 489450841*x^9/9! + 14142037665*x^10/10! + 449838952795*x^11/11! + ...
such that
x = A(x)/(1 + A(x)) + A(x)^2/(2 + A(x)^2) + A(x)^3/(3 + A(x)^3) + A(x)^4/(4 + A(x)^4) + A(x)^5/(5 + A(x)^5) + A(x)^6/(6 + A(x)^6) + ...
The series reversion of the e.g.f. begins:
Series_Reversion(A(x)) = x - 3*x^2/2! + 8*x^3/3! - 24*x^4/4! + 144*x^5/5! - 1010*x^6/6! + 5760*x^7/7! - 40320*x^8/8! + 416640*x^9/9! - 4250232*x^10/10! + 43545600*x^11/11! - 511526400*x^12/12! + ...
which equals Sum_{n>=1} (-1)^(n-1) * x^n / (n + x^n).
PROG
(PARI) {a(n) = my(A = serreverse( sum(m=1, n+1, (-1)^(m-1)*x^m/(m + x^m +x*O(x^n))) ));
n!*polcoeff(H=A, n)}
for(n=1, 25, print1(a(n), ", "))
CROSSREFS
Sequence in context: A202617 A143633 A367180 * A052888 A141623 A229234
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jul 26 2019
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 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)