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!)
A362165 Expansion of e.g.f. exp(-x * sqrt(1-2*x)). 1
1, -1, 3, -4, 25, 24, 721, 5942, 82209, 1186280, 19956241, 373942194, 7768988833, 177018731876, 4389959146665, 117700102748654, 3392361669670081, 104592876707106672, 3434908281762030049, 119702402508549928490, 4411764405039931048641 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = (-1)^n * n! * Sum_{k=0..n} 2^k * binomial((n-k)/2,k)/(n-k)!.
D-finite with recurrence a(n) +2*(-n+3)*a(n-1) +2*(-3*n+10)*a(n-2) +6*(n-2)*a(n-3) -9*(n-3)^2*a(n-4) -27*(n-3)*(n-4)*a(n-5)=0. - R. J. Mathar, Dec 04 2023
MAPLE
A362165 := proc(n)
(-1)^n*n!*add(2^k * binomial((n-k)/2, k)/(n-k)!, k=0..n) ;
end proc:
seq(A362165(n), n=0..70) ; # R. J. Mathar, Dec 04 2023
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(-x*sqrt(1-2*x))))
CROSSREFS
Sequence in context: A065809 A093600 A128778 * A338425 A304210 A245244
KEYWORD
sign
AUTHOR
Seiichi Manyama, Apr 10 2023
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 July 14 05:06 EDT 2024. Contains 374291 sequences. (Running on oeis4.)