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 A069048 #26 Dec 20 2022 18:39:26 %S A069048 1,12,123456,123456789101112131415161718192021222324252627282930, %T A069048 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 %N A069048 Numbers k such that (i) k is a concatenation of consecutive natural numbers starting at 1 and (ii) k+1 is prime. %C A069048 Let n be a concatenation of consecutive natural numbers, starting from 1. Is n ever a prime number? [See A007908 for much more about this question. - _N. J. A. Sloane_, Dec 20 2022] %C A069048 a(5) has 167 digits. There are no further terms 123...n for n <= 1000 (123...1000 has 2893 digits). - _Harvey P. Dale_, Dec 20 2022 %e A069048 12 is a term since it is the concatenation of 1 and 2, and 12+1 = 13 is prime. %e A069048 123456 is a concatenation, starting with 1, of consecutive natural numbers and 123456 + 1 = 123457 is prime. %e A069048 k = 123456789101112131415161718192021222324252627282930 is a term since k+1 = 123456789101112131415161718192021222324252627282931 is prime. %t A069048 Select[Table[FromDigits[Flatten[IntegerDigits/@Range[n]]],{n,100}],PrimeQ[#+1]&] (* _Harvey P. Dale_, Dec 20 2022 *) %Y A069048 Cf. A007908, A359124, A359125. %K A069048 base,nonn %O A069048 1,2 %A A069048 _Joseph L. Pe_, Apr 03 2002 %E A069048 Corrected by _Harvey P. Dale_, Dec 20 2022. %E A069048 Edited by _N. J. A. Sloane_, Dec 20 2022