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 A360812 #9 Feb 22 2023 10:20:26 %S A360812 1,1,1,2,9,29,113,613,3033,17010,110929,713249,5061097,38762873, %T A360812 302389553,2544613578,22404995001,203762678941,1960880744337, %U A360812 19509713674397,201306862742217,2166901479447194,24018963506471921,275731857268608673,3271769647891351705 %N A360812 Expansion of Sum_{k>=0} ( x / (1 - (k * x)^2) )^k. %F A360812 a(n) = Sum_{k=0..floor(n/2)} (n-2*k)^(2*k) * binomial(n-k-1,k). %o A360812 (PARI) my(N=30, x='x+O('x^N)); Vec(sum(k=0, N, (x/(1-(k*x)^2))^k)) %o A360812 (PARI) a(n) = sum(k=0, n\2, (n-2*k)^(2*k)*binomial(n-k-1, k)); %Y A360812 Cf. A339481, A360787. %K A360812 nonn %O A360812 0,4 %A A360812 _Seiichi Manyama_, Feb 21 2023