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 A360992 #8 Feb 28 2023 06:48:16 %S A360992 1,1,-1,-3,4,12,-38,-33,428,-696,-3640,23140,-24766,-358024,2254416, %T A360992 -2636188,-48229769,372329934,-777177980,-8375653981,92394060425, %U A360992 -351172999190,-1461026905290,30190430840555,-192411489098224,66898238530023,11177278011895383 %N A360992 G.f. satisfies A(x) = 1 + x * (1 - x)^2 * A(x * (1 - x)). %F A360992 a(0) = 1; a(n) = Sum_{k=0..n-1} (-1)^k * binomial(n+1-k,k) * a(n-1-k). %o A360992 (PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=sum(j=0, i-1, (-1)^j*binomial(i+1-j, j)*v[i-j])); v; %Y A360992 Cf. A360887, A360894. %K A360992 sign %O A360992 0,4 %A A360992 _Seiichi Manyama_, Feb 27 2023