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 A200212 #9 Sep 03 2024 15:02:40 %S A200212 1,1,3,11,42,174,763,3457,16075,76351,368767,1805682,8943948,44736096, %T A200212 225646033,1146461185,5862224756,30144922281,155791900727, %U A200212 808773877919,4215675455503,22054576750972,115765182718467,609508331610920,3218059655553030,17034314889643633 %N A200212 G.f. satisfies: A(x) = exp( Sum_{n>=1} [Sum_{k=0..n} C(n,k)^3 * x^k*A(x)^(n-k)] * x^n/n ). %e A200212 G.f.: A(x) = 1 + x + 3*x^2 + 11*x^3 + 42*x^4 + 174*x^5 + 763*x^6 +... %e A200212 where the logarithm of the g.f. A = A(x) equals the series: %e A200212 log(A(x)) = (A + x)*x + (A^2 + 2^3*x*A + x^2)*x^2/2 + %e A200212 (A^3 + 3^3*x*A^2 + 3^3*x^2*A + x^3)*x^3/3 + %e A200212 (A^4 + 4^3*x*A^3 + 6^3*x^2*A^2 + 4^3*x^3*A + x^4)*x^4/4 + %e A200212 (A^5 + 5^3*x*A^4 + 10^3*x^2*A^3 + 10^3*x^3*A^2 + 5^3*x^4*A + x^5)*x^5/5 + %e A200212 (A^6 + 6^3*x*A^5 + 15^3*x^2*A^4 + 20^3*x^3*A^3 + 15^3*x^4*A^2 + 6^3*x^5*A + x^6)*x^6/6 +... %e A200212 more explicitly, %e A200212 log(A(x)) = x + 5*x^2/2 + 25*x^3/3 + 117*x^4/4 + 581*x^5/5 + 2987*x^6/6 + 15499*x^7/7 + 81213*x^8/8 +... %o A200212 (PARI) {a(n)=local(A=1+x); for(i=1, n, A=exp(sum(m=1, n, sum(j=0, m, binomial(m, j)^3*x^j/A^j)*(x*A+x*O(x^n))^m/m))); polcoeff(A, n, x)} %Y A200212 Cf. A192131, A166896, A198944, A199875, A166990, A198950, A181143, A181543, A200074. %K A200212 nonn %O A200212 0,3 %A A200212 _Paul D. Hanna_, Nov 14 2011