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!)
A353260 Expansion of Sum_{k>=0} (-1)^k * x^(2*k)/Product_{j=1..k} (1 - j * x). 3
1, 0, -1, -1, 0, 2, 5, 8, 6, -18, -111, -377, -953, -1567, 964, 23411, 133702, 554185, 1801323, 3910514, -2415952, -92788743, -700128734, -3842587204, -17042883146, -57693979779, -86308109341, 779904767601, 10180307035351, 78523141206142, 481780714913151 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,6
LINKS
FORMULA
a(n) = Sum_{k=0..floor(n/2)} (-1)^k * Stirling2(n-k,k).
MATHEMATICA
a[n_] := Sum[(-1)^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, (-1)^k*x^(2*k)/prod(j=1, k, 1-j*x)))
(PARI) a(n) = sum(k=0, n\2, (-1)^k*stirling(n-k, k, 2));
CROSSREFS
Cf. A353253.
Sequence in context: A360809 A287013 A057929 * A154127 A250206 A138371
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 July 20 16:40 EDT 2024. Contains 374459 sequences. (Running on oeis4.)