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 A355308 #16 Feb 16 2025 08:34:03 %S A355308 0,0,0,0,4,10,20,35,1176,10164,58920,277365,4472380,69189406, %T A355308 772011604,6861855455,95279504880,1819310613800,30768119885136, %U A355308 430200439251369,6770486332450740,139958614722287410,3033142442978720380,58782387380290683571,1138026666874389737544 %N A355308 Expansion of e.g.f. -LambertW(x^3/6 * (1 - exp(x))). %H A355308 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/LambertW-Function.html">Lambert W-Function</a>. %F A355308 a(n) = n! * Sum_{k=1..floor(n/4)} k^(k-1) * Stirling2(n-3*k,k)/(6^k * (n-3*k)!). %o A355308 (PARI) my(N=30, x='x+O('x^N)); concat([0, 0, 0, 0], Vec(serlaplace(-lambertw(x^3/6*(1-exp(x)))))) %o A355308 (PARI) a(n) = n!*sum(k=1, n\4, k^(k-1)*stirling(n-3*k, k, 2)/(6^k*(n-3*k)!)); %Y A355308 Cf. A048802, A355181, A357267. %Y A355308 Cf. A353999, A355180. %K A355308 nonn %O A355308 0,5 %A A355308 _Seiichi Manyama_, Sep 24 2022