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!)
A349861 Expansion of Sum_{k>=0} k * x^k/(1 + k^4 * x). 3
0, 1, 1, -28, 272, 10473, -1204227, 61879504, 5542428184, -2801375692615, 597270865802225, -6353098642040604, -85053828910331125224, 62048537484671306803057, -23357096658814809538526243, -10072546328972154349642665952 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(n) = Sum_{k=0..n} (-k^4)^(n-k) * k.
MATHEMATICA
a[n_] := Sum[If[k == n - k == 0, 1, (-k^4)^(n-k)] * k, {k, 0, n}]; Array[a, 16, 0] (* Amiram Eldar, Dec 03 2021 *)
PROG
(PARI) a(n, s=1, t=4) = 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^4*x))))
CROSSREFS
Sequence in context: A179098 A223111 A065693 * A159883 A125391 A126549
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 24 09:38 EDT 2024. Contains 371935 sequences. (Running on oeis4.)