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 A365224 #9 Aug 27 2023 04:39:37 %S A365224 1,1,3,10,30,56,-167,-2813,-21515,-126135,-601812,-2179039,-3455504, %T A365224 32238155,430944400,3334419890,20083350422,97094186751,338485665435, %U A365224 274332822425,-8491831747320,-97735154210032,-732963337489636,-4341176221239330 %N A365224 G.f. satisfies A(x) = 1 + x*A(x)^4 / (1 + x*A(x)^5). %F A365224 a(n) = Sum_{k=0..n} (-1)^(n-k) * binomial(5*n-k+1,k) * binomial(n-1,n-k)/(5*n-k+1). %o A365224 (PARI) a(n) = sum(k=0, n, (-1)^(n-k)*binomial(5*n-k+1, k)*binomial(n-1, n-k)/(5*n-k+1)); %Y A365224 Cf. A001764, A219537, A317133, A364758, A364865. %Y A365224 Cf. A365223, A365226. %K A365224 sign %O A365224 0,3 %A A365224 _Seiichi Manyama_, Aug 27 2023