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!)
A259046 Smallest m such that A259043(m) = n. 2
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 19, 15, 25, 16, 26, 17, 27, 18, 59, 78, 69, 88, 79, 98, 89, 108, 99, 509, 618, 609, 718, 709, 818, 809, 918, 909, 5009, 6018, 6009, 7018, 7009, 8018, 8009, 9018, 9009, 50009, 60018, 60009, 70018, 70009, 80018, 80009, 90018 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
A259043(a(n)) = n and A259043(m) != n for m < a(n).
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 0..76
PROG
(Haskell)
import Data.List (elemIndex); import Data.Maybe (fromJust)
a259046 = fromJust . (`elemIndex` (map a259043 [0..]))
(PARI) f(n) = if (n<10, n, my(u=n%10); f(n\10 + u) + u); \\ A259043
a(n) = my(m=0); while (f(m)!=n, m++); m; \\ Michel Marcus, Jan 23 2022
CROSSREFS
Sequence in context: A276597 A199344 A366198 * A261725 A261729 A003100
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Jun 17 2015
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 8 17:32 EDT 2024. Contains 372340 sequences. (Running on oeis4.)