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!)
A361339 a(n) is the smallest k such that A361338(k) = n. 1
1, 112, 139, 219, 373, 719, 1133, 1919, 3377, 17117 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
a(n) n {the digits reached}
1 1 {1}
112 2 {2, 4}
139 3 {8, 4, 7}
219 4 {8, 2, 4, 6}
373 5 {1, 2, 4, 6, 8}
719 6 {0, 2, 4, 6, 8, 9}
1133 7 {0, 2, 4, 6, 7, 8, 9}
1919 8 {0, 2, 4, 5, 6, 7, 8, 9}
3377 9 {0, 2, 3, 4, 5, 6, 7, 8, 9}
17117 10 {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}
MATHEMATICA
With[{s = Import["https://oeis.org/A361338/b361338.txt", "Data"][[All, -1]]}, {1}~Join~Table[-1 + FirstPosition[s, k][[1]], {k, 2, 10}]] (* Michael De Vlieger, Apr 04 2023, using bfile at A361338 *)
PROG
(Python)
from itertools import count
def agen():
n, adict = 1, dict()
for k in count(1):
v = A361338(k) # uses A361338() and reach1() in A361338
if v not in adict: adict[v] = k
while n in adict: yield adict[n]; n += 1
if n == 11: return
print(list(agen())) # Michael S. Branicky, Apr 04 2023
CROSSREFS
Sequence in context: A157662 A340125 A095615 * A061281 A336329 A349206
KEYWORD
nonn,base,fini,full
AUTHOR
N. J. A. Sloane, Apr 04 2023, based on an email from Michael S. Branicky
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 14 12:38 EDT 2024. Contains 372533 sequences. (Running on oeis4.)