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

A370722
a(n) = Sum_{k=0..floor(n/7)} binomial(n-4*k,3*k).
1
1, 1, 1, 1, 1, 1, 1, 2, 5, 11, 21, 36, 57, 85, 122, 173, 249, 371, 575, 918, 1485, 2398, 3830, 6030, 9369, 14422, 22107, 33909, 52226, 80888, 125925, 196706, 307653, 480873, 750275, 1168085, 1815191, 2817518, 4371772, 6785606, 10539893, 16384908, 25488736
OFFSET
0,8
FORMULA
G.f.: (1-x)^2/((1-x)^3 - x^7).
a(n) = 3*a(n-1) - 3*a(n-2) + a(n-3) + a(n-7).
MATHEMATICA
LinearRecurrence[{3, -3, 1, 0, 0, 0, 1}, Table[1, 7], 50] (* Paolo Xausa, Mar 15 2024 *)
PROG
(PARI) a(n) = sum(k=0, n\7, binomial(n-4*k, 3*k));
(PARI) my(N=50, x='x+O('x^N)); Vec((1-x)^2/((1-x)^3-x^7))
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Seiichi Manyama, Feb 28 2024
STATUS
approved