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 A202835 #20 Jun 22 2022 02:54:05 %S A202835 1,9,121,2025,40401,927369,24000201,689220009,21710549025, %T A202835 743187098889,27441452694681,1086166287819369,45846179189949681, %U A202835 2054407698719865225,97357866191666622441,4862830945258077841449,255239441235423753980481,14040944744510973314880009 %N A202835 Expansion of e.g.f.: exp(9*x/(1-2*x)) / sqrt(1-4*x^2). %H A202835 G. C. Greubel, <a href="/A202835/b202835.txt">Table of n, a(n) for n = 0..350</a> %F A202835 a(n) = A083886(n)^2, where the e.g.f. of A083886 is exp(3*x + x^2). %F A202835 a(n) = ( Sum_{k=0..[n/2]} 3^(n-2*k) * n!/((n-2*k)!*k!) )^2. %F A202835 a(n) ~ n^n*exp(3*sqrt(2*n)-9/4-n)*2^(n-1). - _Vaclav Kotesovec_, May 23 2013 %F A202835 D-finite with recurrence: a(n) = (2*n+7)*a(n-1) + 2*(n-1)*(2*n+7)*a(n-2) - 8*(n-1)*(n-2)^2*a(n-3). - _Vaclav Kotesovec_, May 23 2013 %e A202835 E.g.f.: A(x) = 1 + 9*x + 121*x^2/2! + 2025*x^3/3! + 40401*x^4/4! +... %e A202835 where A(x) = 1 + 3^2*x + 11^2*x^2/2! + 45^2*x^3/3! + 201^2*x^4/4! + 963^2*x^5/5! +...+ A083886(n)^2*x^n/n! +... %t A202835 CoefficientList[Series[Exp[9*x/(1-2*x)]/Sqrt[1-4*x^2], {x, 0, 20}], x]* Range[0, 20]! (* _Vaclav Kotesovec_, May 23 2013 *) %o A202835 (PARI) {a(n)=n!*polcoeff(exp(9*x/(1-2*x)+x*O(x^n))/sqrt(1-4*x^2+x*O(x^n)),n)} %o A202835 (PARI) {a(n)=n!^2*polcoeff(exp(3*x+x^2+x*O(x^n)),n)^2} %o A202835 (PARI) {a(n)=sum(k=0,n\2,3^(n-2*k)*n!/((n-2*k)!*k!))^2} %o A202835 (Magma) R<x>:=PowerSeriesRing(Rationals(), 30); Coefficients(R!(Laplace( Exp(9*x/(1-2*x))/Sqrt(1-4*x^2) ))); // _G. C. Greubel_, Jun 21 2022 %o A202835 (SageMath) %o A202835 def A202835_list(prec): %o A202835 P.<x> = PowerSeriesRing(QQ, prec) %o A202835 return P( exp(9*x/(1-2*x))/sqrt(1-4*x^2) ).egf_to_ogf().list() %o A202835 A202835_list(40) # _G. C. Greubel_, Jun 21 2022 %Y A202835 Cf. A083886, A202827, A202828, A202829, A202831, A202833, A202836. %K A202835 nonn %O A202835 0,2 %A A202835 _Paul D. Hanna_, Dec 25 2011