login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A202828 Expansion of e.g.f.: exp(4*x/(1-2*x)) / sqrt(1-4*x^2). 9
1, 4, 36, 400, 5776, 97344, 1915456, 42406144, 1049760000, 28558296064, 848579961856, 27271456395264, 943132599095296, 34877026635366400, 1373536895379849216, 57351382681767706624, 2530646978003730497536, 117614221470591038521344, 5742190572014854792806400 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = A000898(n)^2, where the e.g.f. of A000898 is exp(2*x + x^2).
a(n) = ( Sum_{k=0..[n/2]} 2^(n-2*k) * n!/((n-2*k)!*k!) )^2.
a(n) = ( Sum_{k=0..n} Stirling1(n, k)*2^k*Bell(k) )^2. [From formula by Vladeta Jovovic in A000898].
a(n) ~ n^n*exp(2*sqrt(2*n)-1-n)*2^(n-1). - Vaclav Kotesovec, May 23 2013
D-finite with recurrence: a(n) = 2*(n+1)*a(n-1) + 4*(n-1)*(n+1)*a(n-2) - 8*(n-1)*(n-2)^2*a(n-3). - Vaclav Kotesovec, May 23 2013
a(n) = 2^n*A277378(n). - R. J. Mathar, Jan 20 2020
EXAMPLE
E.g.f.: A(x) = 1 + 4*x + 36*x^2/3! + 400*x^3/3! + 5776*x^4/4! + 97344*x^5/5! +...
where A(x) = 1 + 2^2*x + 6^2*x^2/2! + 20^2*x^3/3! + 76^2*x^4/4! + 312^2*x^5/5! +...+ A000898(n)^2*x^n/n! +...
MATHEMATICA
CoefficientList[Series[Exp[4*x/(1-2*x)]/Sqrt[1-4*x^2], {x, 0, 20}], x]* Range[0, 20]! (* Vaclav Kotesovec, May 23 2013 *)
PROG
(PARI) {a(n)=n!*polcoeff(exp(4*x/(1-2*x)+x*O(x^n))/sqrt(1-4*x^2+x*O(x^n)), n)}
(PARI) {a(n)=sum(k=0, n\2, 2^(n-2*k)*n!/((n-2*k)!*k!))^2}
(PARI)
{Stirling1(n, k)=n!*polcoeff(binomial(x, n), k)}
{Bell(n)=n!*polcoeff(exp(exp(x+x*O(x^n))-1), n)}
{a(n)=sum(k=0, n, Stirling1(n, k)*Bell(k)*2^k)^2}
(Magma) R<x>:=PowerSeriesRing(Rationals(), 40); Coefficients(R!(Laplace( Exp(4*x/(1-2*x))/Sqrt(1-4*x^2) ))); // G. C. Greubel, Jun 21 2022
(SageMath)
def A202828_list(prec):
P.<x> = PowerSeriesRing(QQ, prec)
return P( exp(4*x/(1-2*x))/sqrt(1-4*x^2) ).egf_to_ogf().list()
A202828_list(40) # G. C. Greubel, Jun 21 2022
CROSSREFS
Sequence in context: A291274 A239112 A002894 * A131765 A244559 A319175
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Dec 25 2011
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 07:53 EDT 2024. Contains 371964 sequences. (Running on oeis4.)