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 A353547 #19 Jul 23 2025 09:07:28 %S A353547 0,1,5,30,256,2969,43665,776194,16159304,385353945,10353609253, %T A353547 309401268494,10177974023448,365446593201793,14220922741157249, %U A353547 596150920955286402,26783000840591098288,1283751796983110068817,65389160400251577565797 %N A353547 Expansion of e.g.f. -log(1-3*x) * exp(x)/3. %F A353547 a(n) = n! * Sum_{k=0..n-1} 3^(n-1-k) / ((n-k) * k!). %F A353547 a(0) = 0, a(1) = 1, a(n) = (3 * n - 2) * a(n-1) - 3 * (n-1) * a(n-2) + 1. %F A353547 a(n) ~ (n-1)! * exp(1/3) * 3^(n-1). - _Vaclav Kotesovec_, Jun 08 2022 %o A353547 (PARI) my(N=20, x='x+O('x^N)); concat(0, Vec(serlaplace(-log(1-3*x)*exp(x)/3))) %o A353547 (PARI) a(n) = n!*sum(k=0, n-1, 3^(n-1-k)/((n-k)*k!)); %o A353547 (PARI) a_vector(n) = my(v=vector(n+1, i, if(i==2, 1, 0))); for(i=2, n, v[i+1]=(3*i-2)*v[i]-3*(i-1)*v[i-1]+1); v; %Y A353547 Cf. A002104, A353546, A353548, A353549. %Y A353547 Cf. A346395. %Y A353547 Essentially partial sums of A010845. %K A353547 nonn %O A353547 0,3 %A A353547 _Seiichi Manyama_, May 27 2022