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!)
A132156 Sum of all n-digit Stern numbers. 0
13, 148, 1003, 16141, 117547, 917053, 15502289, 114274754, 909482399, 15471962269, 115061008452, 917885746619, 15675637954053, 116877859994048, 933643385166035, 15975162211603393, 119196492782053456, 952870691477908028, 16319572144410372393, 121792577413939691253 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
Sum of all 1-digit Stern numbers is 1 + 1 + 2 + 3 + 6 = 13.
Sum of all 2-digit Stern numbers is 11 + 20 + 40 + 77 = 148.
Sum of all 3-digit Stern numbers is 148 + 285 + 570 = 1003.
MATHEMATICA
stern[1] = 1; stern[n_] := stern[n] = Sum[stern[k], {k, n - Ceiling[(Sqrt[8*n -7]-1)/2], n-1}]; digNum[n_] := Length @ IntegerDigits[n]; digCount = 0; sum = 0; cumsum = {}; Do[s = stern[n]; If[digNum[s] > digCount, digCount++; AppendTo[cumsum, sum]]; sum += s, {n, 1, 25}]; Differences[cumsum] (* Amiram Eldar, Nov 30 2019 *)
CROSSREFS
Cf. A005230.
Sequence in context: A016135 A332691 A210165 * A324356 A210158 A130611
KEYWORD
nonn,base,less
AUTHOR
Parthasarathy Nambi, Nov 01 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 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)