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.
%I A371407 #10 Mar 22 2024 09:00:33 %S A371407 1,8,86,1064,14289,202488,2980380,45122792,698214548,10993069856, %T A371407 175546104958,2836384141720,46285381498750,761735217877200, %U A371407 12628402069223160,210704642400488040,3535494883741420908,59621314428576557664,1009942893735988354296 %N A371407 Expansion of (1/x) * Series_Reversion( x / ( (1+x)^2 * (1+3*x)^2 ) ). %H A371407 <a href="/index/Res#revert">Index entries for reversions of series</a> %F A371407 a(n) = (1/(n+1)) * Sum_{k=0..n} 3^k * binomial(2*(n+1),k) * binomial(2*(n+1),n-k). %o A371407 (PARI) my(N=20, x='x+O('x^N)); Vec(serreverse(x/((1+x)^2*(1+3*x)^2))/x) %o A371407 (PARI) a(n) = sum(k=0, n, 3^k*binomial(2*(n+1), k)*binomial(2*(n+1), n-k))/(n+1); %Y A371407 Cf. A002293, A371406. %K A371407 nonn %O A371407 0,2 %A A371407 _Seiichi Manyama_, Mar 21 2024