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 A355235 #14 Jun 25 2022 10:00:46 %S A355235 0,1,0,2,3,40,230,4664,69160,2692320,92337072,7377183360,561596031744, %T A355235 94107667481472,15571512343805184,5506994273113257984, %U A355235 1955013641428681233408,1459378050438033715961856,1101502067162420292961916928 %N A355235 E.g.f. A(x) satisfies A'(x) = 1 - log(1-x) * A(2*x)/2. %F A355235 a(0) = 0, a(1) = 1; a(n+1) = Sum_{k=1..n-1} 2^(n-k-1) * (k-1)! * binomial(n,k) * a(n-k). %o A355235 (PARI) a_vector(n) = my(v=vector(n)); v[1]=1; for(i=1, n-1, v[i+1]=sum(j=1, i-1, 2^(i-j-1)*(j-1)!*binomial(i, j)*v[i-j])); concat(0, v); %Y A355235 Cf. A355230. %K A355235 nonn %O A355235 0,4 %A A355235 _Seiichi Manyama_, Jun 25 2022