cp's OEIS Frontend

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.

A210591 G.f. satisfies: A(x) = x + (A(x) - A(x)^2) * A(A(x)) where A(0)=0.

This page as a plain text file.
%I A210591 #14 Apr 20 2012 10:37:03
%S A210591 1,1,2,6,24,116,636,3823,24729,170187,1236536,9431875,75202833,
%T A210591 624669675,5390981898,48229922730,446459295023,4269397134669,
%U A210591 42117578374712,428090022559608,4478159536973989,48163581285504612,532096844251876645,6033134642314812383
%N A210591 G.f. satisfies: A(x) = x + (A(x) - A(x)^2) * A(A(x)) where A(0)=0.
%C A210591 Compare g.f. to a g.f. C(x) of the Catalan numbers (A000108):
%C A210591 C(x) = x + C(x)*C(C(x)) - C(x)*C(C(x))^2 where C(x) = (1-sqrt(1-4*x))/2.
%F A210591 G.f. satisfies: A( x - (x-x^2)*A(x) ) = x.
%F A210591 G.f. satisfies: A( C(x) - x*A(C(x)) ) = C(x) where C(x) = (1-sqrt(1-4*x))/2 is a g.f. of the Catalan numbers.
%e A210591 G.f.: A(x) = x + x^2 + 2*x^3 + 6*x^4 + 24*x^5 + 116*x^6 + 636*x^7 + 3823*x^8 +...
%e A210591 Related expansions.
%e A210591 A(A(x)) = x + 2*x^2 + 6*x^3 + 23*x^4 + 106*x^5 + 562*x^6 + 3316*x^7 +...
%e A210591 A(x)^2 = x^2 + 2*x^3 + 5*x^4 + 16*x^5 + 64*x^6 + 304*x^7 + 1636*x^8 +...
%e A210591 A(x) - A(x)^2 = x + x^4 + 8*x^5 + 52*x^6 + 332*x^7 + 2187*x^8 +...
%e A210591 The series reversion of g.f. A(x) begins:
%e A210591 x - (x-x^2)*A(x) = x - x^2 - x^4 - 4*x^5 - 18*x^6 - 92*x^7 - 520*x^8 -...
%o A210591 (PARI) {a(n)=local(A=x+x^2);for(i=1,n,A=serreverse(x-(x-x^2)*A +x*O(x^n)));polcoeff(A,n)}
%o A210591 for(n=1,30,print1(a(n),", "))
%Y A210591 Cf. A190761.
%K A210591 nonn
%O A210591 1,3
%A A210591 _Paul D. Hanna_, Mar 23 2012