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 A187826 #17 May 03 2015 07:07:34 %S A187826 1,1,4,26,219,2227,26438,359904,5555201,96383191,1864908541, %T A187826 39929905561,938897407239,24069888638463,668309231078015, %U A187826 19977542570492051,639571311256259372,21828488143257352752,791044181963746918758,30331001954496565907536 %N A187826 G.f. satisfies: A(x) = Sum_{n>=0} ((1 + x*A(x))^n - 1)^n / (1 + x*A(x))^(n^2). %C A187826 Limit n->infinity A220353(n)/A187826(n) = 1. - _Vaclav Kotesovec_, Nov 08 2014 %H A187826 Vaclav Kotesovec, <a href="/A187826/b187826.txt">Table of n, a(n) for n = 0..140</a> %F A187826 G.f. satisfies: A(x) = Sum_{n>=1} ((1+x*A(x))^n - 1)^(n-1) / (1+x*A(x))^(n^2). %F A187826 a(n) ~ c * n^n / (exp(n) * (log(2))^(2*n)), where c = 2.341658334181687683758... . - _Vaclav Kotesovec_, Nov 08 2014 %F A187826 In closed form, c = 1 / (log(2) * sqrt(1-log(2)) * 2^((1-log(2))/2)). - _Vaclav Kotesovec_, May 03 2015 %e A187826 G.f.: A(x) = 1 + x + 4*x^2 + 26*x^3 + 219*x^4 + 2227*x^5 + 26438*x^6 +... %e A187826 where the g.f. satisfies the identities: %e A187826 (1) A(x) = 1 + x*A(x)/(1+x*A(x)) + ((1 + x*A(x))^2 - 1)^2/(1+x*A(x))^4 + ((1 + x*A(x))^3 - 1)^3/(1+x*A(x))^9 + ((1 + x*A(x))^4 - 1)^4/(1+x*A(x))^16 +... %e A187826 (2) A(x) = 1/(1+x*A(x)) + ((1 + x*A(x))^2 - 1)/(1+x*A(x))^4 + ((1 + x*A(x))^3 - 1)^2/(1+x*A(x))^9 + ((1 + x*A(x))^4 - 1)^3/(1+x*A(x))^16 +... %o A187826 (PARI) {a(n)=local(q, A=1); for(i=1,n,q=1+x*A+x*O(x^n);A=sum(k=0, n+1, q^(-k^2)*(q^k-1)^k)); polcoeff(A, n)} %o A187826 for(n=0,30,print1(a(n),", ")) %o A187826 (PARI) {a(n)=local(q, A=1); for(i=1,n,q=1+x*A+x*O(x^n);A=sum(k=1, n+1, q^(-k^2)*(q^k-1)^(k-1))); polcoeff(A, n)} %o A187826 for(n=0,30,print1(a(n),", ")) %Y A187826 Cf. A220352, A187827, A220353. %K A187826 nonn %O A187826 0,3 %A A187826 _Paul D. Hanna_, Dec 27 2012