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”).

A375169
Expansion of (1 - x) / ((1 - x)^3 - x^4).
0
1, 2, 3, 4, 6, 11, 22, 43, 80, 144, 257, 462, 839, 1532, 2798, 5099, 9274, 16855, 30640, 55728, 101393, 184490, 335659, 610628, 1110790, 2020635, 3675822, 6686979, 12164896, 22130208, 40258737, 73237462, 133231279, 242370396, 440913550, 802098203, 1459155634
OFFSET
0,2
FORMULA
a(n) = 3*a(n-1) - 3*a(n-2) + a(n-3) + a(n-4).
a(n) = Sum_{k=0..floor(n/4)} binomial(n+1-k,n-4*k).
PROG
(PARI) my(N=40, x='x+O('x^N)); Vec((1-x)/((1-x)^3-x^4))
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Seiichi Manyama, Aug 05 2024
STATUS
approved