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 A370836 #8 Mar 03 2024 09:53:09 %S A370836 1,1,0,-2,-2,6,19,1,-98,-170,268,1464,967,-7253,-19035,11497,142894, %T A370836 186814,-592148,-2327480,-371472,14922592,30367918,-44517534, %U A370836 -291059645,-242260229,1550840094,4611423196,-2050694753,-36095033685,-54276040088,150373292998 %N A370836 Expansion of (1/x) * Series_Reversion( x/(x+1/(1+x^2)) ). %H A370836 <a href="/index/Res#revert">Index entries for reversions of series</a> %F A370836 a(n) = Sum_{k=0..floor(n/2)} (-1)^k * binomial(n,2*k) * binomial(3*k,k)/(2*k+1). %o A370836 (PARI) my(N=40, x='x+O('x^N)); Vec(serreverse(x/(x+1/(1+x^2)))/x) %o A370836 (PARI) a(n) = sum(k=0, n\2, (-1)^k*binomial(n, 2*k)*binomial(3*k, k)/(2*k+1)); %Y A370836 Cf. A370837, A370838. %Y A370836 Cf. A049130, A370799. %K A370836 sign %O A370836 0,4 %A A370836 _Seiichi Manyama_, Mar 03 2024