This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A368562 #10 Dec 30 2023 09:33:09 %S A368562 1,1,4,22,144,1064,8623,75267,698898,6843478,70209485,751028445, %T A368562 8344927123,96028777007,1141700185040,13996586957076,176645358631455, %U A368562 2291885063335367,30533724487796062,417268607544901628,5843943369536347505,83810410526002091163,1229907906811449747716 %N A368562 Expansion of g.f. A(x) satisfying A(x - A(x)) = x^2 - x^3. %H A368562 Paul D. Hanna, <a href="/A368562/b368562.txt">Table of n, a(n) for n = 2..301</a> %F A368562 G.f. A(x) = Sum_{n>=2} a(n)*x^n satisfies the following formulas. %F A368562 (1) A(x - A(x)) = x^2 - x^3. %F A368562 (2) A(x) = B(x)^2 - B(x)^3 where B(x) = x + A(B(x)) is the g.f. of A190761 and B(x - A(x)) = x. %e A368562 G.f.: A(x) = x^2 + x^3 + 4*x^4 + 22*x^5 + 144*x^6 + 1064*x^7 + 8623*x^8 + 75267*x^9 + 698898*x^10 + 6843478*x^11 + 70209485*x^12 + ... %e A368562 where A(x - A(x)) = x^2 - x^3. %e A368562 RELATED SERIES. %e A368562 Let B(x) be the g.f. of A190761, then A(x) = B(x)^2 - B(x)^3 where %e A368562 B(x) = x + x^2 + 3*x^3 + 14*x^4 + 84*x^5 + 592*x^6 + 4670*x^7 + ... %e A368562 Also, %e A368562 A(B(x)) = x^2 + 3*x^3 + 14*x^4 + 84*x^5 + 592*x^6 + 4670*x^7 + ... %o A368562 (PARI) {a(n) = my(A=x^2, B=x); %o A368562 for(i=1,n, A = B^2 - B^3 +x*O(x^n); B = x + subst(A,x,B) ); polcoeff(A,n)} %o A368562 for(n=2,25,print1(a(n),", ")) %Y A368562 Cf. A190761. %K A368562 nonn %O A368562 2,3 %A A368562 _Paul D. Hanna_, Dec 30 2023