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!)
A097388 2n-th derivative of the Gaussian exp(-x^2) evaluated at x=0. 3
1, -2, 12, -120, 1680, -30240, 665280, -17297280, 518918400, -17643225600, 670442572800, -28158588057600, 1295295050649600, -64764752532480000, 3497296636753920000, -202843204931727360000, 12576278705767096320000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
H_n(0) := n-th derivative of exp(-x^2) at x=0. H_(2*n + 1)(0) = 0 if n >= 0. - Michael Somos, Jan 24 2014
Self-convolution gives A076729(n)*(-1)^n. - Vladimir Reshetnikov, Oct 11 2016
LINKS
FORMULA
E.g.f.: Sum_{k>=0} a(k) * x^(2*k) / (2*k)! = exp(-x^2).
a(n) = (-1)^n *(2*n)! / n!.
G.f.: 1/U(0) where U(k) = 1 + x*(2*k+2)/U(k+1); (continued fraction, 1-step). - Sergei N. Gladkovskii, Nov 14 2012
G.f.: 1/Q(0), where Q(k) = 1 - x*(8*k+2) + x*(8*k+4)/(1 - x*(8*k+6) + x*(8*k+8)/Q(k+1)); (continued fraction). - Sergei N. Gladkovskii, May 18 2013
a(n) = (-1)^n * A001813(n).
G.f. = 1 / (1 + 2*x / (1 + 4*x / (1 + 6*x / ... ))). - Michael Somos, Jan 24 2014
a(n) ~ (-1)^n*2^(2*n+1/2)*n^n/exp(n). - Ilya Gutkovskiy, Oct 11 2016
Sum_{n>=0} 1/a(n) = 1 - sqrt(Pi)*erfi(1/2)/(2*exp(1/4)). - Amiram Eldar, Nov 12 2020
From Nikolaos Pantelidis, Jan 08 2021: (Start)
G.f.: 1/G(1), where G(n) = 1+(8*n-6)*x-8*n*(2*n-1)*x^2/G(n+1); (Jacobi continued fraction)
G.f.: 1/(1 + 2*x - 8*x^2/(1 + 10*x - 48*x^2/(1 + 18*x - 120*x^2/(1 + 26*x - 224*x^2/(1 + 34*x - 360*x^2/(1+ 42*x - 448*x^2/(1+ 50*x - 648*x^2/( ...)))))))) (Jacobi continued fraction).
(End)
EXAMPLE
exp(-x^2) = 1 - x^2 + x^4/4 - x^6/6 + ..., (d/dx)^4 exp(-x^2) = 12 - 60x^2 + ... so a(2)=12.
G.f. = 1 - 2*x + 12*x^2 - 120*x^3 + 1680*x^4 - 30240*x^5 + 665280*x^6 + ...
MATHEMATICA
a[ n_] := If[ n < 0, 0, HermiteH[ 2 n, 0]]; (* Michael Somos, Jan 24 2014 *)
PROG
(PARI) {a(n) = if( n<0, 0, (-1)^n * (2*n)! / n!)};
CROSSREFS
Sequence in context: A214770 A081470 A108135 * A001813 A215188 A236357
KEYWORD
sign
AUTHOR
Michael Somos, Aug 12 2004
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 May 6 11:04 EDT 2024. Contains 372293 sequences. (Running on oeis4.)