OFFSET
1,1
EXAMPLE
Sum of all 1-digit Stirling numbers is 0 + 1 + 3 = 4.
Sum of all 2-digit Stirling numbers is 11 + 50 = 61.
Sum of all 3-digit Stirling numbers is 274.
MATHEMATICA
digNum[n_] := Length @ IntegerDigits[n]; stir[n_] := n! * HarmonicNumber[n]; digCount = 0; sum = 0; cumsum = {}; Do[s = stir[n]; If[digNum[s] > digCount, digCount++; AppendTo[cumsum, sum]]; sum += s, {n, 1, 25}]; Differences[cumsum] (* Amiram Eldar, Nov 30 2019 *)
CROSSREFS
KEYWORD
nonn,base,less
AUTHOR
Parthasarathy Nambi, Sep 24 2007
EXTENSIONS
More terms from Amiram Eldar, Nov 30 2019
STATUS
approved