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 A345104 #5 Jun 08 2021 07:19:41 %S A345104 1,3,13,89,825,9601,134185,2188353,40788745,855303265,19927758377, %T A345104 510728051073,14279388168137,432505475357729,14107767947949289, %U A345104 493046896702987841,18380057918926012809,728005164671113691105,30531323352522247757225,1351567976217998536472833 %N A345104 a(n) = 1 + 2 * Sum_{k=0..n-1} binomial(n-1,k) * a(k) * a(n-k-1). %F A345104 E.g.f. A(x) satisfies: A'(x) = 2 * A(x)^2 + exp(x). %t A345104 a[n_] := a[n] = 1 + 2 Sum[Binomial[n - 1, k] a[k] a[n - k - 1], {k, 0, n - 1}]; Table[a[n], {n, 0, 19}] %t A345104 nmax = 19; A[_] = 1; Do[A[x_] = Normal[Integrate[2 A[x]^2 + Exp[x], x] + O[x]^(nmax + 1)], nmax]; CoefficientList[A[x], x] Range[0, nmax]! %Y A345104 Cf. A000165, A052886, A054687, A345105. %K A345104 nonn %O A345104 0,2 %A A345104 _Ilya Gutkovskiy_, Jun 08 2021