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!)
A367363 First term is 1; thereafter, if u and v are consecutive terms, with decimal expansions u = bc...ef, v = hi...jk, then v-u has decimal expansion efhi, formed by concatenating the last two digits of u and the first two digits of v. If there is a choice for v, pick the smallest. 2
1, 112, 1325, 3863, 10173, 17490, 26516, 28144, 32576, 40216, 41857, 47604, 48052, 53305, 53858, 59717, 61478, 69347, 74121, 76297, 86083, 94477, 102187, 110898, 120710, 121722, 123934, 127346, 131959, 137872, 145086, 153701, 153816, 155431, 158546, 163162 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
A generalization of A121805.
LINKS
EXAMPLE
a(1) = 1, so ef = "01" = 1. So v-u will be a four-digit number (with a leading zero in this case), say v-u = 0xyz, with v = 1 + xyz. This suggests that we try x=1 and y=1, v = 1 + xyz = 1 + 11*, where * = 1+z. The smallest choice is z = 0, giving "efhi" = "0111" = 111, and a(2) = 1 + 111 = 112 works.
PROG
(Python)
from itertools import islice
def agen(): # generator of terms
an, y = 1, 1
while y:
yield an
an, y = an + 100*(an%100), 1
y = next((y for y in range(1, 100) if str(an+y)[:2] == str(y)), 0)
an += y
print(list(islice(agen(), 36))) # Michael S. Branicky, Nov 23 2023
CROSSREFS
Cf. A121805.
Sequence in context: A233115 A188152 A353782 * A327633 A210300 A210293
KEYWORD
nonn,base
AUTHOR
N. J. A. Sloane, Nov 23 2023
EXTENSIONS
More terms from Michael S. Branicky, Nov 23 2023
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 25 21:12 EDT 2024. Contains 373712 sequences. (Running on oeis4.)