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!)
A045776 a(n+1) is smallest multiple of (sum of digits of a(n)) which is > a(n). 1
1, 2, 4, 8, 16, 21, 24, 30, 33, 36, 45, 54, 63, 72, 81, 90, 99, 108, 117, 126, 135, 144, 153, 162, 171, 180, 189, 198, 216, 225, 234, 243, 252, 261, 270, 279, 288, 306, 315, 324, 333, 342, 351, 360, 369, 378, 396, 414, 423, 432, 441, 450 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
a(n) mod 9 = 0 for n > 8. [Reinhard Zumkeller, Dec 28 2011]
LINKS
MATHEMATICA
nxt[n_]:=Module[{sd=Total[IntegerDigits[n]]}, (Floor[n/sd]+1)sd]; NestList[nxt, 1, 60] (* Harvey P. Dale, Jul 28 2012 *)
PROG
(Haskell)
a045776 n = a045776_list !! n
a045776_list = iterate f 1 where
f x = head $ dropWhile (<= x) [q, 2*q..] where q = a007953 x
-- Reinhard Zumkeller, Dec 28 2011
CROSSREFS
Cf. A007953.
Sequence in context: A134162 A244484 A350414 * A102252 A174838 A308149
KEYWORD
easy,nonn,base,nice
AUTHOR
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 June 7 05:40 EDT 2024. Contains 373144 sequences. (Running on oeis4.)