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!)
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 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
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

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 August 24 06:59 EDT 2024. Contains 375409 sequences. (Running on oeis4.)