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!)
A211794 G.f. satisfies: A(x) = x + A(A(x))^2 + A(A(x))^3. 1
1, 1, 5, 34, 284, 2698, 28116, 314558, 3726504, 46310523, 599691087, 8051875596, 111674902936, 1595269110991, 23416737953975, 352551682694096, 5435771974479840, 85722307390977058, 1381216396128765272, 22718307467700650259, 381156536404199989205 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
FORMULA
G.f. A(x) satisfies:
(1) A( x - A(x)^2 - A(x)^3 ) = x.
(2) A( A( x - x^2 - x^3 - A(x)^2 - A(x)^3 ) ) = x. - Paul D. Hanna, Sep 07 2020
(3) A( A( A( x - x^2 - x^3 - A(x)^2 - A(x)^3 - R(x)^2 - R(x)^3 ) ) ) = x, where R(x) = x - A(x)^2 - A(x)^3 satisfies R(A(x)) = x. - Paul D. Hanna, May 06 2024
EXAMPLE
G.f.: A(x) = x + x^2 + 5*x^3 + 34*x^4 + 284*x^5 + 2698*x^6 + 28116*x^7 + ...
Related series begin:
A(A(x)) = x + 2*x^2 + 12*x^3 + 94*x^4 + 872*x^5 + 9026*x^6 + 101194*x^7 + ...
A(A(x))^2 = x^2 + 4*x^3 + 28*x^4 + 236*x^5 + 2264*x^6 + 23796*x^7 + ...
A(A(x))^3 = x^3 + 6*x^4 + 48*x^5 + 434*x^6 + 4320*x^7 + 46302*x^8 + ...
A(x)^2 = x^2 + 2*x^3 + 11*x^4 + 78*x^5 + 661*x^6 + 6304*x^7 + 65624*x^8 + ...
A(x)^3 = x^3 + 3*x^4 + 18*x^5 + 133*x^6 + 1146*x^7 + 10995*x^8 + ...
where the series reversion R(x) of the g.f. A(x) begins:
R(x) = x - A(x)^2 - A(x)^3 = x - x^2 - 3*x^3 - 14*x^4 - 96*x^5 - 794*x^6 - 7450*x^7 - 76619*x^8 - 846161*x^9 - 9901282*x^10 + ...
Also, the series reversion of A(A(x)) is given by
x - x^2 - x^3 - A(x)^2 - A(x)^3 = x - 2*x^2 - 4*x^3 - 14*x^4 - 96*x^5 - 794*x^6 - 7450*x^7 - 76619*x^8 - 846161*x^9 - 9901282*x^10 - ...
Further, the series reversion of A(A(A(x))) starts as
x - x^2 - x^3 - A(x)^2 - A(x)^3 - R(x)^2 - R(x)^3 = x - 3*x^2 - 3*x^3 - 6*x^4 - 68*x^5 - 614*x^6 - 5952*x^7 - 62456*x^8 - 699438*x^9 - 8270469*x^10 + ...
PROG
(PARI) {a(n)=local(A=x+x^2, B=x); for(i=1, n, B=subst(A, x, A+x*O(x^n)); A=x+B^2+B^3); polcoeff(A, n)}
for(n=1, 30, print1(a(n), ", "))
(PARI) {a(n)=local(A=x+x^2); for(i=1, n, A=serreverse(x-A^2-A^3+x*O(x^n))); polcoeff(A, n)}
for(n=1, 30, print1(a(n), ", "))
CROSSREFS
Sequence in context: A090367 A189488 A111557 * A289147 A284864 A208677
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jun 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 July 2 22:05 EDT 2024. Contains 373960 sequences. (Running on oeis4.)