cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A369229 Expansion of (1/x) * Series_Reversion( x * (1-x)^3 / (1-x+x^2)^2 ).

This page as a plain text file.
%I A369229 #10 Jan 17 2024 09:35:48
%S A369229 1,1,4,15,65,298,1429,7073,35869,185403,973198,5173644,27797914,
%T A369229 150715321,823541564,4530609391,25073291597,139492998775,779706274423,
%U A369229 4376600956063,24659875131049,139424357994344,790763858547445,4497788153203946,25650342635871106
%N A369229 Expansion of (1/x) * Series_Reversion( x * (1-x)^3 / (1-x+x^2)^2 ).
%H A369229 <a href="/index/Res#revert">Index entries for reversions of series</a>
%F A369229 a(n) = (1/(n+1)) * Sum_{k=0..floor(n/2)} binomial(2*n+2,k) * binomial(2*n-k,n-2*k).
%o A369229 (PARI) my(N=30, x='x+O('x^N)); Vec(serreverse(x*(1-x)^3/(1-x+x^2)^2)/x)
%o A369229 (PARI) a(n, s=2, t=2, u=3) = sum(k=0, n\s, binomial(t*(n+1), k)*binomial((u-t+1)*(n+1)-(s-1)*k-2, n-s*k))/(n+1);
%Y A369229 Cf. A366049, A369230.
%K A369229 nonn
%O A369229 0,3
%A A369229 _Seiichi Manyama_, Jan 17 2024