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!)
A375290 Expansion of 1/((1 - x + x^4)^2 + 4*x^5). 1
1, 2, 3, 4, 3, -4, -21, -52, -98, -144, -143, 0, 440, 1368, 2891, 4752, 5831, 3438, -7330, -33384, -81044, -148610, -211283, -197280, 39748, 732646, 2152660, 4423184, 7089816, 8360270, 4071395, -13171888, -53480919, -125422768, -224380607, -309560644, -268524883 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = 2*a(n-1) - a(n-2) - 2*a(n-4) - 2*a(n-5) - a(n-8).
a(n) = (1/2) * Sum_{k=0..floor(n/4)} (-1)^k * binomial(2*n-6*k+2,2*k+1).
PROG
(PARI) my(N=40, x='x+O('x^N)); Vec(1/((1-x+x^4)^2+4*x^5))
(PARI) a(n) = sum(k=0, n\4, (-1)^k*binomial(2*n-6*k+2, 2*k+1))/2;
CROSSREFS
Cf. A375293.
Sequence in context: A253852 A103672 A309255 * A201443 A291762 A235051
KEYWORD
sign
AUTHOR
Seiichi Manyama, Aug 10 2024
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 September 16 22:04 EDT 2024. Contains 375979 sequences. (Running on oeis4.)