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!)
A189054 E.g.f. exp(x/sqrt(1-4*x^2)). 1
1, 1, 1, 13, 49, 841, 6001, 126421, 1371553, 34081489, 503678881, 14391006301, 271223253841, 8751666000793, 201326507146129, 7238365225056421, 197024810845531201, 7810072695945382561, 245787442777437613633 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(n) = n! * sum(k=0..n, (binomial((n-2)/2, (n-k)/2) * 2^(n-k-1) * ((-1)^(n-k)+1))/k!).
a(n) ~ (2*n)^(n-1/3) / (sqrt(3)*exp(n-3/4*(2*n)^(1/3))). - Vaclav Kotesovec, Jun 02 2013
MATHEMATICA
CoefficientList[Series[Exp[x/Sqrt[1-4*x^2]], {x, 0, 20}], x]* Range[0, 20]! (* Vaclav Kotesovec, Jun 02 2013 *)
PROG
(Maxima)
a(n):= n!*sum((binomial((n-2)/2, (n-k)/2)*2^(n-k-1)*((-1)^(n-k)+1))/k!, k, 0, n);
(PARI) x='x+O('x^66); /* that many terms */
egf=exp(x/sqrt(1-4*x^2)) /* = 1 +x +1/2*x^2 +13/6*x^3 +49/24*x^4 +... */
Vec(serlaplace(egf)) /* show terms */ /* Joerg Arndt, Apr 22 2011 */
CROSSREFS
Sequence in context: A197663 A274784 A294520 * A231947 A322615 A209995
KEYWORD
nonn
AUTHOR
Vladimir Kruchinin, Apr 16 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 19 05:19 EDT 2024. Contains 371782 sequences. (Running on oeis4.)