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!)
A349852 Expansion of Sum_{k>=0} k * x^k/(1 + k * x). 4
0, 1, 1, 0, 2, 1, -5, 20, -28, -47, 525, -2056, 3902, 9633, -129033, 664364, -1837904, -2388687, 67004697, -478198544, 1994889946, -1669470783, -56929813933, 615188040196, -3794477505572, 12028579019537, 50780206473221, -1172949397924184, 10766410530764118 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
FORMULA
a(n) = -Sum_{k=0..n} (-k)^(n-k+1).
MATHEMATICA
a[n_] := -Sum[(-k)^(n - k + 1), {k, 0, n}]; Array[a, 29, 0] (* Amiram Eldar, Dec 02 2021 *)
PROG
(PARI) a(n, s=1, t=1) = sum(k=0, n, (-k^t)^(n-k)*k^s);
(PARI) my(N=40, x='x+O('x^N)); concat(0, Vec(sum(k=0, N, k*x^k/(1+k*x))))
CROSSREFS
Sequence in context: A012905 A254677 A184298 * A260701 A184300 A317390
KEYWORD
sign
AUTHOR
Seiichi Manyama, Dec 02 2021
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 30 10:25 EDT 2024. Contains 372131 sequences. (Running on oeis4.)