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

%I #14 Apr 09 2022 08:50:13

%S 1,0,-1,-1,-1,-3,-14,-76,-480,-3491,-28792,-265708,-2713753,-30395515,

%T -370509784,-4883351213,-69205187838,-1049436525897,-16956113955333,

%U -290817728309779,-5277059794403117,-101005287980087110,-2033813167589257170,-42977173319758429942

%N Expansion of Sum_{k>=0} x^k * Product_{j=0..k-1} (j - x).

%F a(n) = Sum_{k=0..floor(n/2)} (-1)^k * |Stirling1(n-k,k)|.

%t a[n_] := Sum[(-1)^k * Abs[StirlingS1[n - k, k]], {k, 0, Floor[n/2]}]; Array[a, 25, 0] (* _Amiram Eldar_, Apr 09 2022 *)

%o (PARI) my(N=40, x='x+O('x^N)); Vec(sum(k=0, N, x^k*prod(j=0, k-1, j-x)))

%o (PARI) a(n) = sum(k=0, n\2, (-1)^k*abs(stirling(n-k, k, 1)));

%Y Cf. A343579, A353252, A353254.

%Y Cf. A353260.

%K sign

%O 0,6

%A _Seiichi Manyama_, Apr 08 2022

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 May 1 14:59 EDT 2024. Contains 372174 sequences. (Running on oeis4.)