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 A268703 #12 Mar 21 2016 09:57:22 %S A268703 2,13,233,2333,23333,313333,3233333,31333333,333233333,3233333333, %T A268703 23333333333,333313333333,3333333333383,33133333333333, %U A268703 323333333333333,1333333333333333,23333333333333333,333333133333333333,3333313333333333333,33313333333333333333 %N A268703 Smallest n-digit prime having at least n-1 digits equal to 3. %H A268703 Michel Lagneau, Michael De Vlieger and Robert G. Wilson v, <a href="/A268703/b268703.txt">Table of n, a(n) for n = 1..1105</a> %t A268703 f[n_] := Block[{k = 0, p = {}, r = (10^n - 1)/3, s = Range@ 10 - 4}, While[k < n, AppendTo[p, Select[r + 10^k*s, PrimeQ]]; k++]; p = Min@ Flatten@ p]; f[1] = 2; f[2] = 13; Array[f, 20] %Y A268703 Cf. A037059, A241100, A268702 - A268707, A241206, A266142. %K A268703 nonn,base %O A268703 1,1 %A A268703 _Michel Lagneau_, _Michael De Vlieger_ and _Robert G. Wilson v_, Feb 11 2016