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!)
A353261 Expansion of Sum_{k>=0} (-2)^k * x^(2*k)/Product_{j=1..k} (1 - j * x). 3
1, 0, -2, -2, 2, 10, 18, 10, -62, -310, -894, -1590, 642, 21514, 120322, 461130, 1230466, 877194, -16158974, -142301750, -798423166, -3397990646, -9764986878, 2009650762, 294960691330, 2788851766154, 18403159253250, 95083470290634, 350847712602498 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = Sum_{k=0..floor(n/2)} (-2)^k * Stirling2(n-k,k).
MATHEMATICA
a[n_] := Sum[(-2)^k * StirlingS2[n - k, k], {k, 0, Floor[n/2]}]; Array[a, 30, 0] (* Amiram Eldar, Apr 09 2022 *)
PROG
(PARI) my(N=40, x='x+O('x^N)); Vec(sum(k=0, N, (-2)^k*x^(2*k)/prod(j=1, k, 1-j*x)))
(PARI) a(n) = sum(k=0, n\2, (-2)^k*stirling(n-k, k, 2));
CROSSREFS
Cf. A353254.
Sequence in context: A138674 A351174 A254706 * A291666 A122946 A087628
KEYWORD
sign
AUTHOR
Seiichi Manyama, Apr 09 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 25 16:45 EDT 2024. Contains 371989 sequences. (Running on oeis4.)