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 A366699 #10 Oct 17 2023 08:34:23 %S A366699 1,4,19,173,1860,21814,271388,3515330,46906860,640321565,8899950644, %T A366699 125524292790,1791943900656,25843064347685,375956017001280, %U A366699 5510454405453368,81297696816798684,1206334991431968912,17991734573723974384,269560224872407933010 %N A366699 G.f. satisfies A(x) = (1 + x)^3 + x*A(x)^4. %F A366699 a(n) = Sum_{k=0..n} binomial(3*(3*k+1),n-k) * binomial(4*k,k)/(3*k+1). %o A366699 (PARI) a(n) = sum(k=0, n, binomial(3*(3*k+1), n-k)*binomial(4*k, k)/(3*k+1)); %Y A366699 Cf. A366267, A366698, A366700. %Y A366699 Cf. A364624. %K A366699 nonn %O A366699 0,2 %A A366699 _Seiichi Manyama_, Oct 16 2023