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!)
A357599 Expansion of e.g.f. sinh(2 * log(1+x)) / 2. 1
0, 1, -1, 6, -30, 180, -1260, 10080, -90720, 907200, -9979200, 119750400, -1556755200, 21794572800, -326918592000, 5230697472000, -88921857024000, 1600593426432000, -30411275102208000, 608225502044160000, -12772735542927360000, 281000181944401920000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(n) = Sum_{k=0..floor((n-1)/2)} 4^k * Stirling1(n,2*k+1).
a(n) = (-1)^(n+1) * (n+1)!/4 for n > 2.
PROG
(PARI) my(N=30, x='x+O('x^N)); concat(0, Vec(serlaplace(sinh(2*log(1+x))/2)))
(PARI) a(n) = sum(k=0, (n-1)\2, 4^k*stirling(n, 2*k+1, 1));
(PARI) a(n) = if(n<3, 0^n-(-1)^n, (-1)^(n+1)*(n+1)!/4);
CROSSREFS
Sequence in context: A334288 A063888 A029571 * A368524 A259276 A109501
KEYWORD
sign
AUTHOR
Seiichi Manyama, Oct 05 2022
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 24 10:11 EDT 2024. Contains 371935 sequences. (Running on oeis4.)