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!)
A353253 Expansion of Sum_{k>=0} x^k * Product_{j=0..k-1} (j - x). 4
1, 0, -1, -1, -1, -3, -14, -76, -480, -3491, -28792, -265708, -2713753, -30395515, -370509784, -4883351213, -69205187838, -1049436525897, -16956113955333, -290817728309779, -5277059794403117, -101005287980087110, -2033813167589257170, -42977173319758429942 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,6
LINKS
FORMULA
a(n) = Sum_{k=0..floor(n/2)} (-1)^k * |Stirling1(n-k,k)|.
MATHEMATICA
a[n_] := Sum[(-1)^k * Abs[StirlingS1[n - k, k]], {k, 0, Floor[n/2]}]; Array[a, 25, 0] (* Amiram Eldar, Apr 09 2022 *)
PROG
(PARI) my(N=40, x='x+O('x^N)); Vec(sum(k=0, N, x^k*prod(j=0, k-1, j-x)))
(PARI) a(n) = sum(k=0, n\2, (-1)^k*abs(stirling(n-k, k, 1)));
CROSSREFS
Cf. A353260.
Sequence in context: A371434 A364477 A364758 * A198702 A198621 A198649
KEYWORD
sign
AUTHOR
Seiichi Manyama, Apr 08 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 18 11:38 EDT 2024. Contains 371779 sequences. (Running on oeis4.)