login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A131014 Sum of all n-digit Stirling numbers of first kind. 0
4, 61, 274, 1764, 13068, 109584, 1026576, 10628640, 120543840, 1486442880, 19802759040, 283465647360, 4339163001600, 70734282393600, 1223405590579200, 22376988058521600, 431565146817638400, 8752948036761600000, 186244810780170240000, 4148476779335454720000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
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
Cf. A000254.
Sequence in context: A071582 A158300 A129452 * A118005 A132064 A229666
KEYWORD
nonn,base,less
AUTHOR
Parthasarathy Nambi, Sep 24 2007
EXTENSIONS
More terms from Amiram Eldar, Nov 30 2019
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)