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 A214759 #13 Jan 13 2014 09:13:42 %S A214759 1,2,12,130,1980,38828,931308,26409696,864340080,32064955512, %T A214759 1329619343712,60942831972240,3059502805907184,166958986644198240, %U A214759 9840268295795334528,622945100439880885920,42156597800781887551296,3036974549700781049394240,232047627350715685524211392 %N A214759 E.g.f. satisfies: A(x) = x - log(1-A(x))*log(1+A(x)). %F A214759 E.g.f.: Series_Reversion(x + log(1-x)*log(1+x)). %F A214759 E.g.f.: x + Sum_{n>=1} d^(n-1)/dx^(n-1) (-log(1-x))^n*log(1+x)^n / n!. %F A214759 E.g.f.: x*exp( Sum_{n>=1} d^(n-1)/dx^(n-1) (-log(1-x))^n*log(1+x)^n/x / n! ). %F A214759 a(n) ~ n^(n-1) * sqrt(r*(1-s^2) / (2+s + log(1-s)/(1+s) + log(1+s)/(1-s))) / (exp(n) * r^n), where s = 0.4236731503498759... is the root of the equation log(1+s)/(1-s) - log(1-s)/(1+s) = 1, and r = s + log(1-s)*log(1+s) = 0.2290093920590019... - _Vaclav Kotesovec_, Jan 13 2014 %e A214759 E.g.f.: A(x) = x + 2*x^2/2! + 12*x^3/3! + 130*x^4/4! + 1980*x^5/5! +... %e A214759 where A(x - log(1-x)*log(1+x)) = x and A(x) = x - log(1-A(x))*log(1+A(x)). %e A214759 Related expansions: %e A214759 -log(1-x)*log(1+x) = 2*x^2/2! + 10*x^4/4! + 188*x^6/6! + 7656*x^8/8! + 541152*x^10/10! + 58800960*x^12/12! +... %e A214759 -log(1-A(x)) = x + 3*x^2/2! + 20*x^3/3! + 220*x^4/4! + 3374*x^5/5! + 66428*x^6/6! +... %e A214759 log(1+A(x)) = x + x^2/2! + 8*x^3/3! + 88*x^4/4! + 1354*x^5/5! + 26708*x^6/6! +... %e A214759 Other series: %e A214759 A(x) = x - log(1-x)*log(1+x) + d/dx log(1-x)^2*log(1+x)^2/2! - d^2/dx^2 log(1-x)^3*log(1+x)^3/3! + d^3/dx^3 log(1-x)^4*log(1+x)^4/4! +... %e A214759 log(A(x)/x) = -log(1-x)*log(1+x)/x + d/dx log(1-x)^2*log(1+x)^2/x/2! - d^2/dx^2 log(1-x)^3*log(1+x)^3/x/3! + d^3/dx^3 log(1-x)^4*log(1+x)^4/x/4! +... %t A214759 Rest[CoefficientList[InverseSeries[Series[x + Log[1-x]*Log[1+x], {x, 0, 20}], x],x] * Range[0, 20]!] (* _Vaclav Kotesovec_, Jan 13 2014 *) %o A214759 (PARI) {a(n)=n!*polcoeff(serreverse(x+log(1-x+x*O(x^n))*log(1+x+x*O(x^n))), n)} %o A214759 for(n=1, 25, print1(a(n), ", ")) %o A214759 (PARI) {Dx(n, F)=local(D=F); for(i=1, n, D=deriv(D)); D} %o A214759 {a(n)=local(A=x); A=x+sum(m=1, n, Dx(m-1, (-log(1-x+x*O(x^n)))^m*log(1+x+x*O(x^n))^m/m!)); n!*polcoeff(A, n)} %o A214759 (PARI) {Dx(n, F)=local(D=F); for(i=1, n, D=deriv(D)); D} %o A214759 {a(n)=local(A=x+x^2+x*O(x^n)); A=x*exp(sum(m=1, n, Dx(m-1, (-log(1-x+x*O(x^n)))^m*log(1+x+x*O(x^n))^m/x/m!))); n!*polcoeff(A, n)} %Y A214759 Cf. A143154. %K A214759 nonn %O A214759 1,2 %A A214759 _Paul D. Hanna_, Jul 31 2012