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 A366407 #10 Oct 09 2023 11:20:46 %S A366407 1,2,-7,74,-820,10196,-134785,1860668,-26508457,386843804,-5753126477, %T A366407 86878155652,-1328593620692,20533664196478,-320220157730975, %U A366407 5032648114664896,-79629405527982623,1267425784159379572,-20279086501234998596,325989622456860054852 %N A366407 G.f. A(x) satisfies A(x) = (1 + x / A(x)^(9/2)) / (1 - x). %F A366407 a(n) = (-1)^(n-1) * Sum_{k=0..n} binomial(11*k/2-1,k) * binomial(9*k/2-1,n-k) / (11*k/2-1). %o A366407 (PARI) a(n) = (-1)^(n-1)*sum(k=0, n, binomial(11*k/2-1, k)*binomial(9*k/2-1, n-k)/(11*k/2-1)); %Y A366407 Cf. A366400, A366401, A366402, A366403, A366404, A366405, A366406. %K A366407 sign %O A366407 0,2 %A A366407 _Seiichi Manyama_, Oct 09 2023