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 A373855 #10 Jun 19 2024 09:28:17 %S A373855 0,1,5,80,2690,155074,13658386,1706098008,286888266696,62485391828448, %T A373855 17112247116585744,5755236604915060944,2331975856351260982848, %U A373855 1120439648590390138640304,629855675998212293917375344,409557081242059531918330384896 %N A373855 a(n) = Sum_{k=1..n} k! * k^(n-1) * |Stirling1(n,k)|. %F A373855 E.g.f.: Sum_{k>=1} (-log(1 - k*x))^k / k. %t A373855 nmax=15; Range[0,nmax]!CoefficientList[Series[Sum[(-Log[1 - k*x])^k / k,{k,nmax}],{x,0,nmax}],x] (* _Stefano Spezia_, Jun 19 2024 *) %o A373855 (PARI) a(n) = sum(k=1, n, k!*k^(n-1)*abs(stirling(n, k, 1))); %Y A373855 Cf. A003713, A373856. %Y A373855 Cf. A092552, A244585, A373857. %Y A373855 Cf. A320096. %K A373855 nonn %O A373855 0,3 %A A373855 _Seiichi Manyama_, Jun 19 2024