cp's OEIS Frontend

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.

A351281 a(n) = Sum_{k=0..n} k! * k^k * Stirling2(n,k).

This page as a plain text file.
%I A351281 #16 Feb 06 2022 11:03:28
%S A351281 1,1,9,187,7173,440611,39631509,4910795107,802015652853,
%T A351281 166948755155971,43146953460348309,13555255072473665827,
%U A351281 5087595330217093070133,2248298922174973220446531,1155512971750307157457879509,683392198848998191062416885347
%N A351281 a(n) = Sum_{k=0..n} k! * k^k * Stirling2(n,k).
%F A351281 E.g.f.: Sum_{k>=0} (k * (exp(x) - 1))^k.
%F A351281 a(n) ~ exp(exp(-1)/2) * n! * n^n. - _Vaclav Kotesovec_, Feb 06 2022
%t A351281 a[0] = 1; a[n_] := Sum[k! * k^k * StirlingS2[n, k], {k, 1, n}]; Array[a, 16, 0] (* _Amiram Eldar_, Feb 06 2022 *)
%o A351281 (PARI) a(n) = sum(k=0, n, k!*k^k*stirling(n, k, 2));
%o A351281 (PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(sum(k=0, N, (k*(exp(x)-1))^k)))
%Y A351281 Cf. A000670, A122399, A229234, A282190, A350722, A351280.
%K A351281 nonn
%O A351281 0,3
%A A351281 _Seiichi Manyama_, Feb 06 2022