This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A127421 #51 Dec 31 2023 10:24:52 %S A127421 1,12,23,34,45,56,67,78,89,910,1011,1112,1213,1314,1415,1516,1617, %T A127421 1718,1819,1920,2021,2122,2223,2324,2425,2526,2627,2728,2829,2930, %U A127421 3031,3132,3233,3334,3435,3536,3637,3738,3839,3940,4041,4142,4243,4344,4445,4546 %N A127421 Numbers whose decimal expansion is a concatenation of 2 consecutive increasing nonnegative numbers. %C A127421 Primes in the sequence are in A030458. - _Bruno Berselli_, Mar 25 2015 %C A127421 a(n) always has an even number of digits unless n is in A103456. - _Alonso del Arte_, Oct 30 2019 %H A127421 N. J. A. Sloane, <a href="/A127421/b127421.txt">Table of n, a(n) for n = 1..25000</a> %e A127421 a(1) = "0,1" = 1. %e A127421 a(13) = "12,13" = 1213. %p A127421 a:= n-> parse(cat(n-1, n)): %p A127421 seq(a(n), n=1..55); # _Alois P. Heinz_, Jul 05 2018 %t A127421 nMax = 49; digitsList = IntegerDigits[Range[0, nMax]]; Table[FromDigits[Flatten[{digitsList[[n]], digitsList[[n + 1]]}]], {n, nMax - 1}] (* _Alonso del Arte_, Oct 24 2019 *) %t A127421 Table[FromDigits[Flatten[IntegerDigits/@{n,n+1}]],{n,0,50}] (* _Harvey P. Dale_, May 16 2020 *) %o A127421 (Magma) [Seqint(Intseq(n+1) cat Intseq(n)): n in [0..50]]; // _Bruno Berselli_, Mar 25 2015 %o A127421 (Python) for n in range(100): print(int(str(n)+str(n+1))) # _David F. Marrs_, Sep 17 2018 %o A127421 (Scala) val numerStrs = (0 to 49).map(Integer.toString(_)).toList %o A127421 val concats = (numerStrs.dropRight(1)) zip (numerStrs.drop(1)) %o A127421 concats.map(x => Integer.parseInt(x._1 + x._2)) // _Alonso del Arte_, Oct 24 2019 %Y A127421 A variant of A001704. %Y A127421 For concatenations of exactly k consecutive integers see A000027 (k = 1), A127421 (k = 2), A001703 (k = 3), A279204 (k = 4). For 2 or more see A035333. %Y A127421 Cf. A030458, A127423, A127424, A127425, A103456. %K A127421 nonn,base,easy %O A127421 1,2 %A A127421 _Artur Jasinski_, Jan 14 2007 %E A127421 More terms from _Joshua Zucker_, May 15 2007