login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A202831
Expansion of e.g.f.: exp(4*x/(1-5*x)) / sqrt(1-25*x^2).
9
1, 4, 81, 1444, 44521, 1397124, 58354321, 2574344644, 136043683281, 7657406908804, 489836445798001, 33351743794661604, 2504378700538997881, 199445618093659242244, 17189578072429077875121, 1564487078400498014277124, 152146464623361858013314721
OFFSET
0,2
LINKS
FORMULA
a(n) = A202832(n)^2, where the e.g.f. of A202832 is exp(2*x + 5*x^2/2).
a(n) = ( Sum_{k=0..[n/2]} 2^(n-3*k)*5^k * n!/((n-2*k)!*k!) )^2.
a(n) ~ n^n*exp(4*sqrt(n/5)-2/5-n)*5^n/2. - Vaclav Kotesovec, May 23 2013
D-finite with recurrence: a(n) = (5*n-1)*a(n-1) + 5*(n-1)*(5*n-1)*a(n-2) - 125*(n-1)*(n-2)^2*a(n-3). - Vaclav Kotesovec, May 23 2013
EXAMPLE
E.g.f.: 1 + 4*x + 81*x^2/2! + 1444*x^3/3! + 44521*x^4/4! + 1397124*x^5/5! + ...
where A(x) = 1 + 2^2*x + 9^2*x^2/2! + 38^2*x^3/3! + 211^2*x^4/4! + 1182^2*x^5/5! + ... + A202832(n)^2*x^n/n! + ...
MATHEMATICA
CoefficientList[Series[Exp[4*x/(1-5*x)]/Sqrt[1-25*x^2], {x, 0, 20}], x]* Range[0, 20]! (* Vaclav Kotesovec, May 23 2013 *)
PROG
(PARI) {a(n)=n!*polcoeff(exp(4*x/(1-5*x)+x*O(x^n))/sqrt(1-25*x^2+x*O(x^n)), n)}
(PARI) {a(n)=n!^2*polcoeff(exp(2*x+5*x^2/2+x*O(x^n)), n)^2}
(PARI) {a(n)=sum(k=0, n\2, 2^(n-3*k)*5^k*n!/((n-2*k)!*k!))^2}
(Magma) R<x>:=PowerSeriesRing(Rationals(), 30); Coefficients(R!(Laplace( Exp(4*x/(1-5*x))/Sqrt(1-25*x^2) ))); // G. C. Greubel, Jun 21 2022
(SageMath)
def A202831_list(prec):
P.<x> = PowerSeriesRing(QQ, prec)
return P( exp(4*x/(1-5*x))/sqrt(1-25*x^2) ).egf_to_ogf().list()
A202831_list(40) # G. C. Greubel, Jun 21 2022
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Dec 25 2011
STATUS
approved