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 A368285 #9 Dec 29 2023 06:16:12 %S A368285 1,4,22,168,1700,21560,328576,5844608,118827264,2717955776, %T A368285 69076424384,1931128212992,58895387322240,1945869352171264, %U A368285 69235812945551872,2639436090012161024,107329778640349652992,4637225944423696109568,212138681191492565180416 %N A368285 Expansion of e.g.f. exp(2*x) / (1 + 2*log(1 - x)). %F A368285 a(n) = 2^n + 2 * Sum_{k=1..n} (k-1)! * binomial(n,k) * a(n-k). %F A368285 a(n) ~ n! * exp(n/2 + 2 - 2*exp(-1/2)) / (2 * (exp(1/2) - 1)^(n+1)). - _Vaclav Kotesovec_, Dec 29 2023 %o A368285 (PARI) a_vector(n) = my(v=vector(n+1)); for(i=0, n, v[i+1]=2^i+2*sum(j=1, i, (j-1)!*binomial(i, j)*v[i-j+1])); v; %Y A368285 Cf. A088500, A343707, A368286, A368287. %K A368285 nonn %O A368285 0,2 %A A368285 _Seiichi Manyama_, Dec 19 2023