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 A342198 #5 Mar 04 2021 20:55:55 %S A342198 1,1,17,179,6083,298583,20015947,2214261035,332014246747, %T A342198 64923646898023,17220997162396851,5898373172881341811, %U A342198 2513698997312409032785,1335813901379210302030497,875400777321767437156156305,692119702624591542667897216641,653524900495231808524498551469617 %N A342198 a(0) = 1; a(n) = Sum_{k=1..n} binomial(n,k)^4 * a(k-1). %t A342198 a[0] = 1; a[n_] := a[n] = Sum[Binomial[n, k]^4 a[k - 1], {k, 1, n}]; Table[a[n], {n, 0, 16}] %Y A342198 Cf. A040027, A061685, A336196, A342196, A342197, A342199. %K A342198 nonn %O A342198 0,3 %A A342198 _Ilya Gutkovskiy_, Mar 04 2021