The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A349855 Expansion of Sum_{k>=0} k^4 * x^k/(1 + k * x). 4
0, 1, 15, 50, 76, 203, 335, -84, 2696, -3011, -8433, 130606, -662348, 1840439, 2391823, -67000872, 478203152, -1994884455, 1669477263, 56929821514, -615188031396, 3794477515715, -12028579007921, -50780206459996, 1172949397939160, -10766410530747243 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = Sum_{k=0..n} (-k)^(n-k+4).
MATHEMATICA
a[n_] := Sum[(-k)^(n - k + 4), {k, 0, n}]; Array[a, 26, 0] (* Amiram Eldar, Dec 02 2021 *)
PROG
(PARI) a(n, s=4, 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^4*x^k/(1+k*x))))
CROSSREFS
Sequence in context: A199899 A020257 A298511 * A103777 A134742 A318084
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 June 10 07:22 EDT 2024. Contains 373253 sequences. (Running on oeis4.)