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”).
%I #18 Nov 27 2024 08:50:28
%S 1,1,2,6,22,87,356,1493,6398,27936,123906,556734,2528668,11590555,
%T 53545932,249065874,1165482126,5482782933,25914899804,123009541412,
%U 586121731150,2802470267460,13441993044464,64660400422341,311861855749484,1507802756171072,7306422899878394
%N Expansion of (1/x) * Series_Reversion( x * (1-x-x^3/(1-x)^2) ).
%H <a href="/index/Res#revert">Index entries for reversions of series</a>
%F a(n) = (1/(n+1)) * Sum_{k=0..floor(n/3)} binomial(n+k,k) * binomial(2*n,n-3*k).
%F From _Seiichi Manyama_, Nov 27 2024: (Start)
%F G.f.: exp( Sum_{k>=1} A378464(k) * x^k/k ).
%F a(n) = (1/(n+1)) * [x^n] 1/(1 - x - x^3/(1 - x)^2)^(n+1). (End)
%o (PARI) my(N=30, x='x+O('x^N)); Vec(serreverse(x*(1-x-x^3/(1-x)^2))/x)
%o (PARI) a(n) = sum(k=0, n\3, binomial(n+k, k)*binomial(2*n, n-3*k))/(n+1);
%Y Cf. A378464.
%Y Cf. A049140, A054515.
%Y Cf. A378466, A378467.
%K nonn,changed
%O 0,3
%A _Seiichi Manyama_, Jan 26 2024