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 A355111 #7 Jun 21 2022 12:46:18 %S A355111 1,2,11,93,1041,14541,243747,4767183,106556373,2679469065,74864397015, %T A355111 2300883358995,77144051804409,2802027511061325,109604157405491691, %U A355111 4593512301562215783,205348466229473678301,9753645833118762303249,490530576727430107027839,26040317900991310393061499 %N A355111 Expansion of e.g.f. 3 / (4 - 3*x - exp(3*x)). %F A355111 a(0) = 1; a(n) = n * a(n-1) + Sum_{k=1..n} binomial(n,k) * 3^(k-1) * a(n-k). %F A355111 a(n) ~ n! / ((1 + LambertW(exp(4))) * ((4 - LambertW(exp(4)))/3)^(n+1)). - _Vaclav Kotesovec_, Jun 19 2022 %t A355111 nmax = 19; CoefficientList[Series[3/(4 - 3 x - Exp[3 x]), {x, 0, nmax}], x] Range[0, nmax]! %t A355111 a[0] = 1; a[n_] := a[n] = n a[n - 1] + Sum[Binomial[n, k] 3^(k - 1) a[n - k], {k, 1, n}]; Table[a[n], {n, 0, 19}] %Y A355111 Cf. A003575, A006155, A032033, A255927, A343673, A355110, A355112, A355113, A355114. %K A355111 nonn %O A355111 0,2 %A A355111 _Ilya Gutkovskiy_, Jun 19 2022