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.

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

This page as a plain text file.
%I A372375 #11 Apr 29 2024 09:06:55
%S A372375 1,1,1,3,9,21,54,161,470,1347,4007,12199,37141,113802,352905,1101969,
%T A372375 3455220,10891968,34515825,109814395,350616323,1123368287,3610647348,
%U A372375 11637410625,37605280548,121812321775,395455199269,1286446544052,4192913001804,13690359696969
%N A372375 Expansion of (1/x) * Series_Reversion( x * (1+x) / (1+x+x^3)^2 ).
%H A372375 <a href="/index/Res#revert">Index entries for reversions of series</a>
%F A372375 a(n) = (1/(n+1)) * Sum_{k=0..floor(n/3)} binomial(2*n+2,k) * binomial(n-k+1,n-3*k).
%o A372375 (PARI) my(N=40, x='x+O('x^N)); Vec(serreverse(x*(1+x)/(1+x+x^3)^2)/x)
%o A372375 (PARI) a(n, s=3, t=2, u=-1) = sum(k=0, n\s, binomial(t*(n+1), k)*binomial((t+u)*(n+1)-k, n-s*k))/(n+1);
%Y A372375 Cf. A369483, A369484, A369485.
%Y A372375 Cf. A372371.
%K A372375 nonn
%O A372375 0,4
%A A372375 _Seiichi Manyama_, Apr 29 2024