The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A054632 Partial sums of A007376. 5
0, 1, 3, 6, 10, 15, 21, 28, 36, 45, 46, 46, 47, 48, 49, 51, 52, 55, 56, 60, 61, 66, 67, 73, 74, 81, 82, 90, 91, 100, 102, 102, 104, 105, 107, 109, 111, 114, 116, 120, 122, 127, 129, 135, 137, 144, 146, 154, 156, 165, 168, 168, 171, 172, 175, 177 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
PROG
(Haskell)
a054632 n = a054632_list !! n
a054632_list = scanl (+) 0 a007376_list
-- Reinhard Zumkeller, Dec 29 2011
(Python)
from itertools import accumulate, count, islice
def A054632gen(): return accumulate(int(d) for n in count(0) for d in str(n))
A054632_list = list(islice(A054632gen(), 40)) # Chai Wah Wu, Dec 04 2021
CROSSREFS
Sequence in context: A187845 A130488 A061076 * A109453 A217627 A037123
KEYWORD
nonn,base,easy
AUTHOR
N. J. A. Sloane, Apr 16 2000
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 May 13 21:17 EDT 2024. Contains 372523 sequences. (Running on oeis4.)