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 A069609 #15 May 06 2022 12:51:30 %S A069609 7,1,9,3,3,3,17,7,11,37,11,9,31,9,17,13,93,3,167,67,119,93,31,33,143, %T A069609 99,297,91,69,83,1,33,23,27,199,333,123,549,17,67,141,33,39,167,21, %U A069609 217,279,419,69,517,71,451,171,39,191,93,43,11,303,777,33,67,207,369,489 %N A069609 a(1) = 7; a(n) = smallest number such that the juxtaposition a(1)a(2)...a(n) is a prime. %H A069609 Harvey P. Dale, <a href="/A069609/b069609.txt">Table of n, a(n) for n = 1..200</a> %e A069609 a(7) = 17 and the number 71933317 is a prime. %t A069609 a[1] = 7; a[n_] := a[n] = Block[{k = 1, c = IntegerDigits @ Table[ a[i], {i, n - 1}]}, While[ !PrimeQ[ FromDigits @ Flatten @ Append[c, IntegerDigits[k]]], k += 2]; k]; Table[ a[n], {n, 67}] (* _Robert G. Wilson v_, Aug 05 2005 *) %t A069609 nxt[{j_,a_}]:=Module[{k=1},While[CompositeQ[j*10^IntegerLength[k]+k],k++];{j*10^IntegerLength[k]+k,k}]; NestList[nxt,{7,7},70][[All,2]] (* _Harvey P. Dale_, May 06 2022 *) %Y A069609 Cf. A069602, A069604, A046257, A074343, A092528, A069603, A069605, A069606, A069607, A069608, A069609, A069610, A069611, A111525. %K A069609 nonn,base %O A069609 1,1 %A A069609 _Amarnath Murthy_, Mar 26 2002 %E A069609 More terms from _Jason Earls_, Jun 13 2002