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 A341197 #12 Feb 07 2021 00:41:59 %S A341197 1,1,8,117,2800,97125,4551876,274975897,20690260928,1889451727497, %T A341197 205192914235300,26068434774065541,3822244304373085680, %U A341197 639508508456359098349,120922358829574588363364,25626415609908102483018225 %N A341197 a(n) = Sum_{k=0..n} k^n * (n-k)! * binomial(n,k)^2. %t A341197 a[0] = 1; a[n_] := Sum[k^n * (n-k)! * Binomial[n, k]^2, {k, 0, n}]; Array[a, 16, 0] (* _Amiram Eldar_, Feb 06 2021 *) %o A341197 (PARI) a(n) = sum(k=0, n, k^n*(n-k)!*binomial(n, k)^2); %Y A341197 Main diagonal of A341200. %Y A341197 Cf. A277373, A341185. %K A341197 nonn %O A341197 0,3 %A A341197 _Seiichi Manyama_, Feb 06 2021