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 A372349 #9 Jun 23 2024 16:13:13 %S A372349 1,1,2,6,28,190,1730,20068,287406,4971884,102082882,2450448780, %T A372349 67879395878,2145912460492,76704301481034,3075725307199340, %U A372349 137422311677357710,6800630226338490492,370741889753741467970,22155195508036869880684,1444764915198178824091590 %N A372349 a(n) = Sum_{j=0..n} p(n - j, j) where p(n, x) = Sum_{k=0..n} k! * abs(Stirling1(n, k)) * x^k. %p A372349 p := n -> local k; add(k!*abs(Stirling1(n, k))*x^k, k = 0..n): %p A372349 a := n -> local j; add(subs(x=j, p(n - j)), j = 0..n): %p A372349 seq(a(n), n = 0..20); %t A372349 p[n_][x_] := Sum[k!*Abs[StirlingS1[n, k]]*If[k == 0, 1, x^k], {k, 0, n}]; %t A372349 a[n_] := Sum[p[n - j][j], {j, 0, n}]; %t A372349 Table[a[n], {n, 0, 20}] (* _Jean-François Alcover_, May 12 2024 *) %Y A372349 Cf. A372346, A372347, A372348. %Y A372349 Cf. A225479. %K A372349 nonn %O A372349 0,3 %A A372349 _Peter Luschny_, Apr 29 2024