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

A369616
Expansion of (1/x) * Series_Reversion( x / (1/(1-x)^2 + x) ).
5
1, 3, 12, 58, 314, 1824, 11107, 69955, 451918, 2977834, 19936332, 135225006, 927267595, 6417580459, 44770275705, 314489676679, 2222549047262, 15791353483602, 112734135824404, 808247711066688, 5817056710700424, 42012120642574732, 304384379305912686
OFFSET
0,2
FORMULA
a(n) = (1/(n+1)) * Sum_{k=0..n} binomial(n+1,k) * binomial(3*n-3*k+1,n-k).
D-finite with recurrence 2*(n+1)*(2*n+1)*a(n) +3*(-13*n^2+1)*a(n-1) +33*(2*n-1)*(n-1)*a(n-2) -31*(n-1)*(n-2)*a(n-3)=0. - R. J. Mathar, Jan 28 2024
MAPLE
A369616 := proc(n)
add(binomial(n+1, k) * binomial(3*n-3*k+1, n-k), k=0..n) ;
%/(n+1) ;
end proc;
seq(A369616(n), n=0..70) ; # R. J. Mathar, Jan 28 2024
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serreverse(x/(1/(1-x)^2+x))/x)
(PARI) a(n) = sum(k=0, n, binomial(n+1, k)*binomial(3*n-3*k+1, n-k))/(n+1);
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jan 27 2024
STATUS
approved