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 A099071 #14 Jul 16 2021 11:34:43 %S A099071 4,6,8,9,26,1752 %N A099071 Composite numbers k such that the concatenation of all nonprime positive integers up to k in decreasing order is prime. %C A099071 The terms of this sequence are composite terms of the sequence A099070 with the same order. Next term is greater than 6000 and the prime corresponding to the next term has more than 20000 digits. Number of digits of primes corresponding to the six known terms of the sequence are respectively 2, 3, 4, 5, 29, and 5010. %H A099071 Carlos Rivera, <a href="http://www.primepuzzles.net/puzzles/puzz_008.htm">Puzzle 8. Primes by Listing</a>, The Prime Puzzles and Problems Connection. %e A099071 26 is a term: 26 is composite; nonprimes up to 26 are 1, 4, 6, 8, 9, 10, 12, 14, 15, 16, 18, 20, 21, 22, 24, 25, 26; and 26252422212018161514121098641 is prime. %t A099071 Do[If[ !PrimeQ[n]&&PrimeQ[(v={};Do[If[ !PrimeQ[n+1-j], v=Join[v, IntegerDigits[n+1-j]]], {j, n}];FromDigits[v])], Print[n]], {n, 6013}] %t A099071 cnpQ[n_]:=PrimeQ[FromDigits[Flatten[IntegerDigits/@Select[Range[n,1,-1],!PrimeQ[#]&]]]]; Select[Range[1800],!PrimeQ[#]&&cnpQ[#]&] (* _Harvey P. Dale_, Jul 19 2020 *) %Y A099071 Cf. A099070, A100003, A046284. %K A099071 base,more,nonn,nice %O A099071 1,1 %A A099071 _Farideh Firoozbakht_, Nov 06 2004