login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Concatenation of their first digits yields the difference of two subsequent terms, a(1)=1. This is the lexicographically first infinite sequence with this property.
2

%I #19 Dec 23 2024 14:53:44

%S 0,1,12,24,48,97,188,199,211,233,255,277,299,322,355,388,422,466,511,

%T 566,622,688,755,833,922,1013,1024,1035,1046,1057,1068,1079,1090,1101,

%U 1112,1123,1134,1145,1156,1167,1178,1189,1200,1211,1222,1233,1244,1255,1266,1277

%N Concatenation of their first digits yields the difference of two subsequent terms, a(1)=1. This is the lexicographically first infinite sequence with this property.

%C At each step, the smallest possible choice must be made for the next term.

%C The initial term a(0) = 0 has been added since it can be thought to make sense, but it is maybe not without controversy ("leading zero", unambiguous continuation, ...) and should therefore be considered as purely conventional or be ignored completely.

%C In contrast to A121805, this sequence is infinite.

%H M. F. Hasler, <a href="/A260261/b260261.txt">Table of n, a(n) for n = 0..10000</a>

%H E. Angelini, <a href="https://web.archive.org/web/*/http://list.seqfan.eu/oldermail/seqfan/2015-July/015112.html">A story of leftmost digit (corrected)</a>, Jul 21 2015

%F a(10^7)=178567225.

%e a(1)=1 cannot be followed by a(2) = 2, 3, ..., 10 or 11 because this would yield concatenated first digits equal to 12, 13, ..., 19, 11 and 11, all different from the gap a(2) - a(1). But a(2) = 12 does produce a gap of 11 equal to the first two digits concatenated.

%e Then must follow a term >= 12 + 11 = 23 since the concatenation of the first two digits will be at least 11, but 23 would yield 12 for the concatenation, not equal to the gap. For a(3) = 24 the same concatenation is equal to the gap.

%e After a(25)=1013, and also after a(282)=10044, there follow many gaps of 11, then, e.g. after a(1187)=19999, one gap of 12 followed by about 450 gaps of 22, then one gap of 23 and about 300 gaps of 33, etc. After about 100 gaps of 99 the sequence reaches a(2850) = 99911, followed by a gap of 91, and then again more than 9000 gaps of 11.

%e This behavior will continue for each order of magnitude, so it is easily seen that the sequence is infinite.

%o (PARI) a=1;for(n=1,100,print1(a",");a+=10*digits(a)[1];for(k=1,9,digits(a+k)[1]==k&&(a+=k)&&next(2));error) \\ The error never occurs.

%Y Cf. A121805 (gap equals concatenation of the last and first digits, respectively).

%K nonn,base,changed

%O 0,3

%A _Eric Angelini_ and _M. F. Hasler_, Jul 21 2015