login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A349860
Expansion of Sum_{k>=0} k * x^k/(1 + k^3 * x).
3
0, 1, 1, -12, 50, 913, -35093, 557048, 15098348, -1975843727, 103722820509, -396969408196, -704487440688562, 106081534307130081, -7995154887120369801, -510404434212739199104, 340061796037700870259064, -75820293495741408235957599, 8142099722101269515604494937
OFFSET
0,4
FORMULA
a(n) = Sum_{k=0..n} (-k^3)^(n-k) * k.
MATHEMATICA
a[n_] := Sum[If[k == n - k == 0, 1, (-k^3)^(n-k)] * k, {k, 0, n}]; Array[a, 19, 0] (* Amiram Eldar, Dec 03 2021 *)
PROG
(PARI) a(n, s=1, t=3) = sum(k=0, n, (-k^t)^(n-k)*k^s);
(PARI) my(N=20, x='x+O('x^N)); concat(0, Vec(sum(k=0, N, k*x^k/(1+k^3*x))))
CROSSREFS
Sequence in context: A342482 A333276 A145886 * A268351 A374384 A166776
KEYWORD
sign
AUTHOR
Seiichi Manyama, Dec 02 2021
STATUS
approved