login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A349857 Expansion of Sum_{k>=0} x^k/(1 + k^3 * x). 5
1, 1, 0, -6, 37, 155, -11616, 251940, 783641, -454238419, 29895012768, -757531311386, -106105977022243, 21452688824818775, -2105573104903303616, 16702280440994303008, 48278492787774402969521, -13301912828187822051695559, 1964564462643243537548661568
(list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(n) = Sum_{k=0..n} (-k^3)^(n-k).
MATHEMATICA
a[n_] := Sum[If[k == n - k == 0, 1, (-k^3)^(n-k)], {k, 0, n}]; Array[a, 19, 0] (* Amiram Eldar, Dec 03 2021 *)
PROG
(PARI) a(n, s=0, t=3) = sum(k=0, n, (-k^t)^(n-k)*k^s);
(PARI) my(N=20, x='x+O('x^N)); Vec(sum(k=0, N, x^k/(1+k^3*x)))
CROSSREFS
Sequence in context: A129651 A097297 A362336 * A047670 A338708 A129552
KEYWORD
sign
AUTHOR
Seiichi Manyama, Dec 02 2021
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | 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 September 19 07:23 EDT 2024. Contains 376004 sequences. (Running on oeis4.)