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!)
A305578 a(n) = Sum_{k=0..n} binomial(n,k)*k!!*(n - k)!!. 2
1, 2, 6, 18, 64, 230, 936, 3822, 17344, 78354, 389280, 1913010, 10267776, 54235350, 311348352, 1751907150, 10673326080, 63531238050, 408231498240, 2556121021650, 17236028160000, 113006008398150, 796296326031360, 5445783239554350, 39959419088977920, 284127133728611250 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Exponential convolution of A006882 with itself.
LINKS
Eric Weisstein's World of Mathematics, Double Factorial
FORMULA
E.g.f.: (1 + x*exp(x^2/2)*(1 + sqrt(Pi/2)*erf(x/sqrt(2))))^2.
MAPLE
a:= proc(n) option remember; `if`(n<4, [1, 2, 6, 18][n+1],
3*n*a(n-2)-2*(n-3)*n*a(n-4))
end:
seq(a(n), n=0..30); # Alois P. Heinz, Jun 14 2018
MATHEMATICA
Table[Sum[Binomial[n, k] k!! (n - k)!!, {k, 0, n}], {n, 0, 25}]
nmax = 25; CoefficientList[Series[(1 + x Exp[x^2/2] (1 + Sqrt[Pi/2] Erf[x/Sqrt[2]]))^2, {x, 0, nmax}], x] Range[0, nmax]!
CROSSREFS
Sequence in context: A150071 A265945 A007454 * A150072 A150073 A150074
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jun 05 2018
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 12:06 EDT 2024. Contains 371792 sequences. (Running on oeis4.)