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 A378153 #10 Nov 18 2024 09:44:43 %S A378153 1,0,0,1,3,3,3,12,30,45,75,192,436,798,1554,3542,7740,15543,32183, %T A378153 70794,153252,321431,684123,1491504,3232672,6928779,14957787,32615388, %U A378153 70991040,153985890,335256886,733206840,1603258134,3503385568,7671749664,16837946850 %N A378153 G.f. A(x) satisfies A(x) = 1 + (x * (1+x))^3 * A(x)^2. %F A378153 a(n) = Sum_{k=0..floor(n/3)} binomial(3*k,n-3*k) * C(k), where C(k) are the Catalan numbers (A000108). %F A378153 G.f.: 2/(1 + sqrt(1 - 4*(x*(1+x))^3)). %o A378153 (PARI) a(n) = sum(k=0, n\3, binomial(3*k, n-3*k)*binomial(2*k, k)/(k+1)); %Y A378153 Cf. A115055, A378151. %Y A378153 Cf. A000108. %K A378153 nonn %O A378153 0,5 %A A378153 _Seiichi Manyama_, Nov 18 2024