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 A361572 #16 Sep 07 2024 18:00:27 %S A361572 1,0,0,6,72,720,7560,90720,1270080,20381760,364694400,7125148800, %T A361572 150186960000,3393726336000,81882210009600,2102315389574400, %U A361572 57244753133568000,1647544166940672000,49957730917981286400,1591303422125646028800 %N A361572 Expansion of e.g.f. exp( (x / (1-x))^3 ). %F A361572 a(n) = n! * Sum_{k=0..floor(n/3)} binomial(n-1,n-3*k)/k!. %F A361572 a(0) = 1; a(n) = (n-1)! * Sum_{k=3..n} (-1)^(k-3) * k * binomial(-3,k-3) * a(n-k)/(n-k)!. %F A361572 From _Vaclav Kotesovec_, Mar 17 2023: (Start) %F A361572 a(n) = 4*(n-1)*a(n-1) - 6*(n-2)*(n-1)*a(n-2) + (n-2)*(n-1)*(4*n - 9)*a(n-3) - (n-4)*(n-3)*(n-2)*(n-1)*a(n-4). %F A361572 a(n) ~ 3^(1/8) * exp(-1/4 + 5*3^(-1/4)*n^(1/4)/8 - sqrt(3*n)/2 + 4*3^(-3/4)*n^(3/4) - n) * n^(n - 1/8) / 2 * (1 - (409/2560)*3^(1/4)/n^(1/4)). (End) %t A361572 Table[n! * Sum[Binomial[n-1,n-3*k]/k!, {k,0,n/3}], {n,0,20}] (* _Vaclav Kotesovec_, Mar 17 2023 *) %t A361572 With[{nn=20},CoefficientList[Series[Exp[(x/(1-x))^3],{x,0,nn}],x] Range[0,nn]!] (* _Harvey P. Dale_, Sep 07 2024 *) %o A361572 (PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(exp((x/(1-x))^3))) %o A361572 (PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=(i-1)!*sum(j=3, i, (-1)^(j-3)*j*binomial(-3, j-3)*v[i-j+1]/(i-j)!)); v; %Y A361572 Cf. A000262, A052887, A361576. %Y A361572 Cf. A091695. %K A361572 nonn %O A361572 0,4 %A A361572 _Seiichi Manyama_, Mar 16 2023