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 A140095 #10 Jan 31 2013 09:11:45 %S A140095 1,1,5,41,437,5513,78477,1225865,20644021,370334137,7017055933, %T A140095 139562915193,2899946191077,62722686552841,1408033260333581, %U A140095 32729098457253417,786224322656857941,19486950945070339801,497649167866430159197,13078602790892074110937 %N A140095 G.f. satisfies: A(x) = x/(1 - A(A(A(A(x))))). %F A140095 G.f. A(x) satisfies: %F A140095 (1) A(x) = Series_Reversion(x - x*A(A(A(x)))). %F A140095 (2) A(x) = x + Sum_{n=1} d^(n-1)/dx^(n-1) x^n * A(A(A(x)))^n / n!. %F A140095 (3) A(x) = x*exp( Sum_{n=1} d^(n-1)/dx^(n-1) x^n * A(A(A(x)))^n/x / n! ). %F A140095 Define A_{n} such that A_{n+1}(x) = A( A_{n}(x) ) with A_0(x) = x, %F A140095 then A_{n}(x) = A_{n-1}/[1 - A_{n+3}(x)] ; %F A140095 thus A_{n}(x) = 1 - A_{n-4}(x) / A_{n-3}(x). %F A140095 G.f.: A(x)/x is the unique solution to variable A in the infinite system of simultaneous equations starting with: %F A140095 A = 1 + x*A*D; %F A140095 B = A + x*B*E; %F A140095 C = B + x*C*F; %F A140095 D = C + x*D*G; %F A140095 E = D + x*E*H; ... %e A140095 G.f.: A(x) = x + x^2 + 5*x^3 + 41*x^4 + 437*x^5 + 5513*x^6 + 78477*x^7 +... %e A140095 Iterations A_{n+1}(x) = A( A_{n}(x) ) are related as follows. %e A140095 A_2(x) = 1 - Series_Reversion(A_2(x)) / Series_Reversion(A(x)); %e A140095 A_3(x) = 1 - Series_Reversion(A(x)) / x; %e A140095 A_4(x) = 1 - x / A(x); %e A140095 A_5(x) = 1 - A(x) / A_2(x); %e A140095 A_6(x) = 1 - A_2(x) / A_3(x); %e A140095 A_7(x) = 1 - A_3(x) / A_4(x); %e A140095 A_8(x) = 1 - A_4(x) / A_5(x); ... %e A140095 where the iterations of A(x) begin: %e A140095 A_2(x) = x + 2*x^2 + 12*x^3 + 108*x^4 + 1220*x^5 + 16028*x^6 +... %e A140095 A_3(x) = x + 3*x^2 + 21*x^3 + 207*x^4 + 2489*x^5 + 34259*x^6 +... %e A140095 A_4(x) = x + 4*x^2 + 32*x^3 + 344*x^4 + 4408*x^5 + 63776*x^6 +... %e A140095 A_5(x) = x + 5*x^2 + 45*x^3 + 525*x^4 + 7165*x^5 + 109125*x^6 +... %e A140095 A_6(x) = x + 6*x^2 + 60*x^3 + 756*x^4 + 10972*x^5 + 175948*x^6 +... %e A140095 A_7(x) = x + 7*x^2 + 77*x^3 + 1043*x^4 + 16065*x^5 + 271103*x^6 +... %e A140095 A_8(x) = x + 8*x^2 + 96*x^3 + 1392*x^4 + 22704*x^5 + 402784*x^6 +... %e A140095 ... %e A140095 Iterations are also related by continued fractions: %e A140095 A(x) = x/(1 - A_3(x)/(1 - A_6(x)/(1 - A_9(x)/(1 -...)))) ; %e A140095 A_2(x) = A(x)/(1 - A_4(x)/(1 - A_7(x)/(1 - A_10(x)/(1 -...)))) ; %e A140095 A_3(x) = A_2(x)/(1 - A_5(x)/(1 - A_8(x)/(1 - A_11(x)/(1 -...)))) ; %e A140095 A_4(x) = A_3(x)/(1 - A_6(x)/(1 - A_9(x)/(1 - A_12(x)/(1 -...)))) ; ... %o A140095 (PARI) {a(n)=local(A); if(n<1, 0, n++; A=x+O(x^2); for(i=2, n,B=subst(A, x, A); A=x/(1-subst(B, x, B))); polcoeff(A, n))} %Y A140095 Cf. A140094, A088714, A088717, A091713, A120971, A139702. %K A140095 nonn %O A140095 1,3 %A A140095 _Paul D. Hanna_, May 08 2008, May 20 2008