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!)
A372829 a(n) = n! * Sum_{k=0..floor(n/2)} k! / (2*k)!. 0
1, 1, 3, 9, 38, 190, 1146, 8022, 64200, 577800, 5778120, 63559320, 762712560, 9915263280, 138813690960, 2082205364400, 33315285870720, 566359859802240, 10194477476803200, 193695072059260800, 3873901441188844800, 81351930264965740800, 1789742465829286214400 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
E.g.f.: (1 + sqrt(Pi) * x * exp(x^2/4) * erf(x/2) / 2) / (1 - x).
a(n) = Sum_{k=0..floor(n/2)} binomial(n,2*k) * k! * (n-2*k)!.
a(n) ~ n! * (1 + exp(1/4)*sqrt(Pi)*erf(1/2)/2). - Vaclav Kotesovec, May 14 2024
MATHEMATICA
Table[n! Sum[k!/(2 k)!, {k, 0, Floor[n/2]}], {n, 0, 22}]
nmax = 22; CoefficientList[Series[(1 + Sqrt[Pi] x Exp[x^2/4] Erf[x/2]/2)/(1 - x), {x, 0, nmax}], x] Range[0, nmax]!
PROG
(PARI) a(n) = n! * sum(k=0, n\2, k! / (2*k)!); \\ Michel Marcus, May 14 2024
CROSSREFS
Sequence in context: A133222 A103942 A030928 * A030912 A030892 A030869
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, May 14 2024
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 September 16 21:44 EDT 2024. Contains 375977 sequences. (Running on oeis4.)