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 A351733 #12 May 21 2022 08:41:08 %S A351733 1,0,4,6,56,250,1812,12614,101040,864882,7988780,78726142,823897032, %T A351733 9111774698,106068603396,1295153135670,16538681229152,220281968528098, %U A351733 3053087839536732,43941561067048430,655501502129291640,10118103843683127642 %N A351733 Expansion of e.g.f. exp( 2 * x * (exp(x) - 1) ). %F A351733 a(n) = n! * Sum_{k=0..floor(n/2)} 2^k * Stirling2(n-k,k)/(n-k)!. %o A351733 (PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(2*x*(exp(x)-1)))) %o A351733 (PARI) a(n) = n!*sum(k=0, n\2, 2^k*stirling(n-k, k, 2)/(n-k)!); %Y A351733 Cf. A052506, A351734. %Y A351733 Cf. A053489, A351736. %K A351733 nonn %O A351733 0,3 %A A351733 _Seiichi Manyama_, May 20 2022