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 A355084 #9 Jun 18 2022 23:03:47 %S A355084 1,1,3,32,962,74604,14102416,6268777248,6394217598800, %T A355084 14703540690658848,75208658403123879744,846736815151560907880448, %U A355084 20804324374762392749905814784,1107653447201119751335031683041792,127026805293926861783650032004892737536 %N A355084 E.g.f. A(x) satisfies A(x) = 1 + log(1+x) * A(2*x). %F A355084 a(0) = 1; a(n) = Sum_{k=1..n} (-1)^(k-1) * 2^(n-k) * (k-1)! * binomial(n,k) * a(n-k). %o A355084 (PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=sum(j=1, i, (-1)^(j-1)*2^(i-j)*(j-1)!*binomial(i, j)*v[i-j+1])); v; %Y A355084 Cf. A006252, A355085. %Y A355084 Cf. A352860, A355086. %K A355084 nonn %O A355084 0,3 %A A355084 _Seiichi Manyama_, Jun 18 2022