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 A360901 #8 Feb 25 2023 09:39:29 %S A360901 1,1,1,1,1,-1,-4,-8,-13,-16,-3,39,126,273,411,283,-619,-3149,-8201, %T A360901 -14496,-14368,12984,109920,329552,655436,785583,-312525,-5009034, %U A360901 -16789151,-36433571,-48990090,6965306,286109557,1044072824,2414264953,3490255449,-41486331 %N A360901 G.f. satisfies A(x) = 1 + x/(1 + x^4)^2 * A(x/(1 + x^4)). %F A360901 a(0) = 1; a(n) = Sum_{k=0..floor((n-1)/4)} (-1)^k * binomial(n-3*k,k) * a(n-1-4*k). %o A360901 (PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=sum(j=0, (i-1)\4, (-1)^j*binomial(i-3*j, j)*v[i-4*j])); v; %Y A360901 Cf. A352865, A360900. %Y A360901 Cf. A360893. %K A360901 sign %O A360901 0,7 %A A360901 _Seiichi Manyama_, Feb 25 2023