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

A369514
Expansion of (1/x) * Series_Reversion( x * ((1-x)^3-x^3)^2 ).
2
1, 6, 57, 652, 8250, 111228, 1566384, 22770990, 339136149, 5147965790, 79355002155, 1238845925070, 19546811164017, 311215082863152, 4993737492276384, 80673666233512572, 1311052196736963738, 21418709030787603984, 351563022864652061086, 5794815410347964694408
OFFSET
0,2
FORMULA
a(n) = (1/(n+1)) * Sum_{k=0..floor(n/3)} binomial(2*n+k+1,k) * binomial(7*n+5,n-3*k).
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serreverse(x*((1-x)^3-x^3)^2)/x)
(PARI) a(n) = sum(k=0, n\3, binomial(2*n+k+1, k)*binomial(7*n+5, n-3*k))/(n+1);
CROSSREFS
Cf. A369114.
Sequence in context: A349363 A130565 A124556 * A365816 A207412 A362167
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jan 25 2024
STATUS
approved