login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A373463
Expansion of 1/((1 + x)^5 - 2*x^5).
1
1, -5, 15, -35, 70, -124, 190, -220, 55, 715, -2999, 8585, -20580, 43520, -81940, 134376, -176195, 118435, 279235, -1572395, 4900626, -12339900, 27139450, -53163300, 91745475, -131888749, 125584845, 66464465, -781173960, 2736565920, -7295547624, 16717081040
OFFSET
0,2
FORMULA
a(n) = -5*a(n-1) - 10*a(n-2) - 10*a(n-3) - 5*a(n-4) + a(n-5).
a(n) = (-1)^n * Sum_{k=0..floor(n/5)} (-2)^k * binomial(n+4,5*k+4).
PROG
(PARI) my(N=40, x='x+O('x^N)); Vec(1/((1+x)^5-2*x^5))
CROSSREFS
Cf. A000750.
Sequence in context: A374714 A341134 A292103 * A290447 A360051 A000750
KEYWORD
sign,easy
AUTHOR
Seiichi Manyama, Aug 04 2024
STATUS
approved