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

A373544
Expansion of 1/(1 - x/(1 - 9*x^3)^(2/3)).
1
1, 1, 1, 1, 7, 13, 19, 70, 157, 280, 799, 1894, 3781, 9646, 23080, 49159, 119203, 283972, 627760, 1487095, 3518617, 7945561, 18620746, 43801447, 100117099, 233475802, 546859390, 1258634440, 2928668632, 6839770279, 15804569341, 36739434904, 85640217781, 198337427839
OFFSET
0,5
FORMULA
a(n) = Sum_{k=0..floor(n/3)} 9^k * binomial(2*n/3-k-1,k).
a(n) == 1 (mod 3).
PROG
(PARI) a(n) = sum(k=0, n\3, 9^k*binomial(2*n/3-k-1, k));
CROSSREFS
Cf. A371458.
Sequence in context: A154756 A024732 A024954 * A070850 A060211 A355329
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jun 09 2024
STATUS
approved