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 A357193 #11 Sep 17 2022 08:48:26 %S A357193 1,0,2,6,3096,61560,65248200,4058986680,7506140268480, %T A357193 1062517243193280,3052268000677879200,822543740977513816800, %U A357193 3395913346775619237617280,1553795963458841732838848640,8727392877498334693600263757440 %N A357193 a(n) = n! * Sum_{k=0..floor(n/2)} k^(2*n)/k!. %F A357193 E.g.f.: Sum_{k>=0} (k^2 * x)^(2 * k) / (k! * (1 - k^2 * x)). %o A357193 (PARI) a(n) = n!*sum(k=0, n\2, k^(2*n)/k!); %o A357193 (PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(sum(k=0, N, (k^2*x)^(2*k)/(k!*(1-k^2*x))))) %Y A357193 Cf. A256016, A357194. %Y A357193 Cf. A352983, A357191. %K A357193 nonn %O A357193 0,3 %A A357193 _Seiichi Manyama_, Sep 17 2022