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!)
A067043 Nondecreasing sums of digits: a(0) = 0 and for n>0: a(n) = Min{m>n|SumOfDigits(m)>= SumOfDigits(a(n-1))}, where SumOfDigits = A007953. 5
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 18, 19, 28, 29, 38, 39, 48, 49, 58, 59, 68, 69, 78, 79, 88, 89, 98, 99, 189, 198, 199, 289, 298, 299, 389, 398, 399, 489, 498, 499, 589, 598, 599, 689, 698, 699, 789, 798, 799, 889, 898, 899, 989, 998 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
A138472(a(n)) = 0. - Reinhard Zumkeller, Mar 19 2008
Positions of records in A048377: A192686(n) = A048377(a(n)). [Reinhard Zumkeller, Jul 10 2011]
LINKS
PROG
(Haskell)
a067043 n = a067043_list !! n
a067043_list = 0 : f 1 1 0 1 where
f k x y z
| y > 0 = (x-y) : f k x (y `div` 10) z
| k < 9 = x : f (k+1) (2*x-k*z+1) (z `div` 10) z
| otherwise = x : f 1 (20*z-1) z (10*z)
-- Reinhard Zumkeller, Jul 10 2011
CROSSREFS
Sequence in context: A032864 A032888 A023791 * A108690 A032944 A273736
KEYWORD
nonn,base
AUTHOR
Reinhard Zumkeller, Feb 17 2002
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 18 09:47 EDT 2024. Contains 371779 sequences. (Running on oeis4.)