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

A373638
a(n) = Sum_{k=0..floor(n/2)} binomial(3*n-5*k,k).
2
1, 1, 2, 5, 9, 21, 43, 92, 196, 414, 882, 1869, 3970, 8427, 17887, 37975, 80608, 171121, 363254, 771119, 1636944, 3474913, 7376591, 15659094, 33241289, 70564951, 149795989, 317988473, 675029164, 1432958824, 3041899638, 6457375642, 13707783053, 29099021980
OFFSET
0,3
FORMULA
G.f.: 1 / (1 - x^2 - x/(1 - x^2)^2).
a(n) = a(n-1) + 3*a(n-2) - 3*a(n-4) + a(n-6) for n > 5.
PROG
(PARI) a(n) = sum(k=0, n\2, binomial(3*n-5*k, k));
CROSSREFS
Sequence in context: A097163 A117186 A155042 * A001851 A356375 A303963
KEYWORD
nonn,easy
AUTHOR
Seiichi Manyama, Jun 12 2024
STATUS
approved