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 A239547 #8 Mar 23 2014 20:14:33 %S A239547 1,3,4,5,7,14,21,43,56,96,141,178,180,198,263,271,315,347,352,471,530, %T A239547 565,588,707,711,793,812,850,887,952,1083,1214,1218,1266,1564,1661, %U A239547 1686,1744,1976,2047,2066,2166,2268,2412,2740,2777,2895,2905,3056,3058,3293 %N A239547 a(1) = 1; a(n) is smallest number > a(n-1) such that the juxtaposition a(n)a(n-1)...a(1) is a prime. %H A239547 Paolo P. Lava, <a href="/A239547/b239547.txt">Table of n, a(n) for n = 1..100</a> %p A239547 with(numtheory); %p A239547 S:=proc(s) local w; w:=convert(s, base, 10); sum(w[j], j=1..nops(w)); end: %p A239547 T:=proc(t) local w, x, y; x:=t; y:=0; while x>0 do x:=trunc(x/10); y:=y+1; od; end: %p A239547 P:=proc(q) local a, b, c, j, n; a:=1; j:=2; print(1); %p A239547 for n from 1 to q do b:=T(a); c:=j*10^b+a; %p A239547 if isprime(c) then a:=j*10^b+a; print(j); fi; %p A239547 j:=j+1; od; print(); end: P(10^10); %Y A239547 Cf. A033680, A074336. %K A239547 nonn,base %O A239547 1,2 %A A239547 _Paolo P. Lava_, Mar 21 2014