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 A351879 #6 Feb 23 2022 10:48:37 %S A351879 1,1,-1,-2,0,10,10,-60,-220,400,4200,2200,-90200,-290400,1892000, %T A351879 15796000,-24024000,-775676000,-1592492000,36509880000,240055640000, %U A351879 -1435950560000,-23703057840000,7376731120000,2082346354000000,9478853472000000,-162472029808000000 %N A351879 a(0) = a(1) = 1; a(n) = -Sum_{k=0..n-2} binomial(n-2,k) * a(k) * a(n-k-2). %F A351879 E.g.f. A(x) satisfies: A(x) = 1 + x - Integral( Integral A(x)^2 dx) dx. %t A351879 a[0] = a[1] = 1; a[n_] := a[n] = -Sum[Binomial[n - 2, k] a[k] a[n - k - 2], {k, 0, n - 2}]; Table[a[n], {n, 0, 26}] %Y A351879 Cf. A007558, A307374, A346078. %K A351879 sign %O A351879 0,4 %A A351879 _Ilya Gutkovskiy_, Feb 23 2022