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 A187827 #17 Nov 08 2014 07:25:40 %S A187827 1,1,5,36,325,3468,42519,590268,9201740,160150252,3095440553, %T A187827 66068011710,1547572760559,39529002357409,1094096683131616, %U A187827 32622859912512090,1042350065213470532,35521574976088978133,1285782300453328211074,49256935742079848796102 %N A187827 G.f. satisfies: A(x) = Sum_{n>=0} (1 - (1 - x*A(x))^n)^n. %H A187827 Vaclav Kotesovec, <a href="/A187827/b187827.txt">Table of n, a(n) for n = 0..140</a> %F A187827 G.f. satisfies: A(x) = Sum_{n>=1} (1-x*A(x))^n * (1 - (1-x*A(x))^n)^(n-1). %F A187827 a(n) ~ c * n^n / (exp(n) * (log(2))^(2*n)), where c = 3.7860088... . - _Vaclav Kotesovec_, Nov 08 2014 %e A187827 G.f.: A(x) = 1 + x + 5*x^2 + 36*x^3 + 325*x^4 + 3468*x^5 + 42519*x^6 +... %e A187827 where the g.f. satisfies the identities: %e A187827 (1) A(x) = 1 + x*A(x) + (1 - (1-x*A(x))^2)^2 + (1 - (1-x*A(x))^3)^3 + (1 - (1-x*A(x))^4)^4 + (1 - (1-x*A(x))^5)^5 +... %e A187827 (2) A(x) = (1-x*A(x)) + (1-x*A(x))^2*(1 - (1-x*A(x))^2) + (1-x*A(x))^3*(1 - (1-x*A(x))^3)^2 + (1-x*A(x))^4*(1 - (1-x*A(x))^4)^3 + (1-x)^5*(1 - (1-x*A(x))^5)^4 +... %o A187827 (PARI) {a(n)=local(q, A=1); for(i=1,n,q=1/(1-x*A+x*O(x^n));A=sum(k=0, n+1, q^(-k^2)*(q^k-1)^k)); polcoeff(A, n)} %o A187827 for(n=0,20,print1(a(n),", ")) %o A187827 (PARI) {a(n)=local(q, A=1); for(i=1,n,q=1/(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 A187827 for(n=0,20,print1(a(n),", ")) %Y A187827 Cf. A220353, A187826. %K A187827 nonn %O A187827 0,3 %A A187827 _Paul D. Hanna_, Dec 27 2012