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 A178533 #8 Mar 12 2022 13:12:20 %S A178533 1,2,15,220,5025,159066,6515551,330344736,20099812977,1434653999650, %T A178533 118051188070431,11045624947772328,1162186160312303737, %U A178533 136250833163724567666,17661781851438961602255,2514858304152906320391136 %N A178533 E.g.f. satisfies: A(x) = Sum_{n>=0} A_{n}(x)^(n+1)/n! where A_{n}(x) denotes the n-th iteration of A(x). %C A178533 Not the same as A140054. %F A178533 E.g.f. satisfies: A_{k}(x) = Sum_{n>=0} A_{n+k-1}(x)^(n+1)/n! where A_{n}(x) denotes the n-th iteration of A(x): A_{n}(x) = A_{n-1}(A(x)) with A_0(x)=x. %e A178533 E.g.f.: A(x) = x + 2*x^2/2! + 15*x^3/3! + 220*x^4/4! + 5025*x^5/5! +... %e A178533 The e.g.f. equals the series: %e A178533 A(x) = x + A(x)^2 + A(A(x))^3/2! + A(A(A(x)))^4/3! + A(A(A(A(x))))^5/4! +...+ A_{n}(x)^(n+1)/n! +... %e A178533 Related expansions: %e A178533 A(A(x)) = x + 4*x^2/2! + 42*x^3/3! + 764*x^4/4! + 20400*x^5/5! +... %e A178533 A(A(A(x))) = x + 6*x^2/2! + 81*x^3/3! + 1776*x^4/4! + 55125*x^5/5! +... %e A178533 A(A(A(A(x)))) = x + 8*x^2/2! + 132*x^3/3! + 3400*x^4/4! + 121080*x^5/5! +... %e A178533 The series reversion of the e.g.f. is given by: %e A178533 A_{-1}(x) = x - x^2 - A(A(x))^3/2! - A(A(A(x)))^4/3! - A(A(A(A(x))))^5/4! -...- A_{n-1}(x)^(n+1)/n! -... %e A178533 A_{-1}(x) = x - 2*x^2/2! - 3*x^3/3! - 40*x^4/4! - 795*x^5/5! - 22356*x^6/6! -... %o A178533 (PARI) {ITERATE(F,n,p)=local(G=x);for(i=1,n,G=subst(F,x,G+x*O(x^p)));G} %o A178533 {a(n)=local(A=x+x^2+x*O(x^n));for(i=1,n,A=sum(m=0,n,ITERATE(A,m,n)^(m+1)/m!));n!*polcoeff(A,n)} %Y A178533 Cf. A140054. %K A178533 nonn %O A178533 1,2 %A A178533 _Paul D. Hanna_, Dec 24 2010