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 A367963 #6 Feb 10 2024 11:59:36 %S A367963 1,4,30,320,4550,82152,1808268,47018400,1410564870,47959254200, %T A367963 1822451844356,76542978168384,3520976998449820,176048849932891600, %U A367963 9506637896416263000,551384997992298371520,34185869875523100114630,2256267411784526941171800,157938718824916894957161300 %N A367963 a(n) = Sum_{j=0..n} (2*n)! / (n!*(n - j)!). %F A367963 a(n) = (exp(1) * Gamma(n + 1, 1) * Gamma(2*n + 1)) / Gamma(n + 1)^2. %F A367963 a(n) * n! = A367962(2*n, n). %p A367963 a := n -> add((2*n)!/(n!*(n-j)!), j = 0..n): %p A367963 seq(a(n), n = 0..18); %t A367963 Table[Sum[(2n)!/(n!(n-j)!),{j,0,n}],{n,0,20}] (* _Harvey P. Dale_, Feb 10 2024 *) %Y A367963 Cf. A367962. %K A367963 nonn %O A367963 0,2 %A A367963 _Peter Luschny_, Dec 06 2023