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 A373740 #22 Jun 16 2024 11:02:04 %S A373740 1,0,1,3,3,30,105,315,2625,11340,57645,467775,2505195,17027010, %T A373740 142026885,922296375,7493911425,65886420600,503693415225, %U A373740 4625660914875,43369908657075,379618464975750,3824934458169825,38406952928819475,376103907454500225 %N A373740 Expansion of e.g.f. exp(x^2/2 * (1 + x)). %F A373740 a(n) = n! * Sum_{k=0..floor(n/2)} binomial(k,n-2*k)/(2^k * k!). %F A373740 a(n) = (n-1)/2 * (2*a(n-2) + 3*(n-2)*a(n-3)). %o A373740 (PARI) a(n) = n!*sum(k=0, n\2, binomial(k, n-2*k)/(2^k*k!)); %Y A373740 Cf. A361567, A373741. %Y A373740 Cf. A182097. %K A373740 nonn %O A373740 0,4 %A A373740 _Seiichi Manyama_, Jun 16 2024