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 A228938 #14 Jun 28 2014 01:06:14 %S A228938 1,2,10,66,570,6162,80010,1212066,20983770,408687282,8844164010, %T A228938 210530630466,5467167038970,153805368043602,4659779072312010, %U A228938 151259403573751266,5237308594356166170,192673897986624475122,7505181282611209004010,308589102795660836942466 %N A228938 E.g.f.: (2 + exp(3*x)) / (4 - exp(3*x)). %F A228938 E.g.f. A(x) satisfies: %F A228938 (1) A'(x) = -1 + A(x) + 2*A(x)^2. %F A228938 (2) A(x) = exp(x + Integral 2*A(x) - 1/A(x) dx). %F A228938 (3) A(x) = 1 + Series_Reversion( Integral 1/((2+x)*(1+2*x)) dx ). %F A228938 a(n) ~ n!/2 * (3/(2*log(2)))^(n+1). - _Vaclav Kotesovec_, Dec 19 2013 %e A228938 E.g.f.: A(x) = 1 + 2*x + 10*x^2/2! + 66*x^3/3! + 570*x^4/4! + 6162*x^5/5! +... %t A228938 CoefficientList[Series[(2+E^(3*x))/(4-E^(3*x)), {x, 0, 20}], x]* Range[0, 20]! (* _Vaclav Kotesovec_, Dec 19 2013 *) %o A228938 (PARI) {a(n)=local(A=1+x,X=x+x*O(x^n));n!*polcoeff((2+exp(3*X))/(4-exp(3*X)),n)} %o A228938 for(n=0,20,print1(a(n),", ")) %o A228938 (PARI) {a(n)=local(A=1+x+x*O(x^n)); for(i=1, n, A=exp(x+intformal(2*A-1/A+x*O(x^n)))); n!*polcoeff(A, n)} %o A228938 for(n=0,20,print1(a(n), ", ")) %Y A228938 Cf. A190818. %K A228938 nonn %O A228938 0,2 %A A228938 _Paul D. Hanna_, Dec 18 2013