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 A215118 #10 Jul 11 2025 15:34:52 %S A215118 1,5,25,625,18125,628125,25390625,1158515625,58308203125, %T A215118 3190470703125,187941103515625,11832996337890625,791834056298828125, %U A215118 56063448811767578125,4184231129351806640625,328154000925299072265625,26970505516268341064453125,2317475342690856231689453125 %N A215118 G.f. satisfies: A(x) = x + 4*x^2 + x*A(A(A(A(A(x))))). %C A215118 The (1/5)-iteration of the g.f. equals an integer series (A215119). %e A215118 G.f.: A(x) = x + 5*x^2 + 25*x^3 + 625*x^4 + 18125*x^5 + 628125*x^6 + ... %e A215118 where %e A215118 A(A(A(A(x)))) = x + 25*x^2 + 625*x^3 + 18125*x^4 + 628125*x^5 + ... %e A215118 Related expansions. %e A215118 Let E(E(E(E(E(x))))) = A(x), then E(x) is an integer series where: %e A215118 E(x) = x + x^2 + x^3 + 101*x^4 + 2301*x^5 + 82601*x^6 + 3287001*x^7 + ... %e A215118 where the coefficients of E(x) are congruent to 1 modulo 100. %o A215118 (PARI) {a(n) = my(A=x+4*x^2); for(i=1,n,A=x+4*x^2+x*subst(A,x,subst(A,x,subst(A,x,subst(A,x,A+x*O(x^n)))))); polcoef(A, n)} %o A215118 for(n=1, 31, print1(a(n), ", ")) %Y A215118 Cf. A215119, A213010, A215114, A215116. %K A215118 nonn %O A215118 1,2 %A A215118 _Paul D. Hanna_, Aug 03 2012