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

A377261
Expansion of 1/(1 - 9*x*(1 + x))^(5/3).
2
1, 15, 195, 2340, 26910, 301158, 3307590, 35830080, 384072975, 4082949585, 43113860361, 452742067440, 4732188244290, 49266375442110, 511157395433610, 5287689996408612, 54555878321808435, 561579617798527185, 5768783256563735265, 59149668761521664040, 605472238745163334116
OFFSET
0,2
FORMULA
a(n) = 3*((3*n+2)*a(n-1) + (3*n+4)*a(n-2))/n for n > 1.
a(n) = Sum_{k=0..n} (-9)^k * binomial(-5/3,k) * binomial(k,n-k).
PROG
(PARI) a(n) = sum(k=0, n, (-9)^k*binomial(-5/3, k)*binomial(k, n-k));
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Oct 21 2024
STATUS
approved