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 A343687 #7 Apr 26 2021 12:19:27 %S A343687 1,5,51,782,15992,408814,12541010,448834728,18358297416,844755218400, %T A343687 43190363326992,2429044756967520,149029669269441456, %U A343687 9905401062535389072,709016063545908259248,54375505616232613595904,4448148376192382963462400,386619861956492109750650496,35580548688887294090357622912 %N A343687 a(0) = 1; a(n) = 4 * n * a(n-1) + Sum_{k=0..n-1} binomial(n,k) * (n-k-1)! * a(k). %F A343687 E.g.f.: 1 / (1 - 4*x + log(1 - x)). %F A343687 a(n) ~ n! / ((4/c + 3 - c) * (1 - c/4)^n), where c = LambertW(4*exp(3)) = 3.2176447220005493578369738... - _Vaclav Kotesovec_, Apr 26 2021 %t A343687 a[0] = 1; a[n_] := a[n] = 4 n a[n - 1] + Sum[Binomial[n, k] (n - k - 1)! a[k], {k, 0, n - 1}]; Table[a[n], {n, 0, 18}] %t A343687 nmax = 18; CoefficientList[Series[1/(1 - 4 x + Log[1 - x]), {x, 0, nmax}], x] Range[0, nmax]! %Y A343687 Cf. A007840, A052820, A053487, A343685, A343686. %K A343687 nonn %O A343687 0,2 %A A343687 _Ilya Gutkovskiy_, Apr 26 2021