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!)
A349853 Expansion of Sum_{k>=0} k^2 * x^k/(1 + k * x). 3
0, 1, 3, 2, 4, 11, -13, 36, 56, -515, 2067, -3890, -9620, 129047, -664349, 1837920, 2388704, -67004679, 478198563, -1994889926, 1669470804, 56929813955, -615188040173, 3794477505596, -12028579019512, -50780206473195, 1172949397924211, -10766410530764090 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = Sum_{k=0..n} (-k)^(n-k+2).
MATHEMATICA
a[n_] := Sum[(-k)^(n - k + 2), {k, 0, n}]; Array[a, 28, 0] (* Amiram Eldar, Dec 02 2021 *)
PROG
(PARI) a(n, s=2, 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^2*x^k/(1+k*x))))
CROSSREFS
Sequence in context: A368226 A277743 A296099 * A319103 A332647 A290333
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 23 02:53 EDT 2024. Contains 371906 sequences. (Running on oeis4.)