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!)
A349856 Expansion of Sum_{k>=0} x^k/(1 + k^2 * x). 5
1, 1, 0, -2, 7, 3, -242, 2032, -3795, -187211, 3860140, -36467310, -284357501, 21796446487, -538332144294, 5605176351652, 182065102478857, -12963817679287959, 422751776737348504, -5483284328996107802, -327213964461103956801, 30082452646697648945899 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(n) = Sum_{k=0..n} (-k^2)^(n-k).
MATHEMATICA
a[n_] := Sum[If[k == n - k == 0, 1, (-k^2)^(n - k)], {k, 0, n}]; Array[a, 22, 0] (* Amiram Eldar, Dec 03 2021 *)
PROG
(PARI) a(n, s=0, t=2) = sum(k=0, n, (-k^t)^(n-k)*k^s);
(PARI) my(N=40, x='x+O('x^N)); Vec(sum(k=0, N, x^k/(1+k^2*x)))
CROSSREFS
Sequence in context: A249782 A090564 A306618 * A079072 A004584 A016592
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 25 11:39 EDT 2024. Contains 371969 sequences. (Running on oeis4.)