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 A176548 #7 Feb 06 2019 00:39:15 %S A176548 2,3,5,7,11,13,16,17,20,30,31,32,37,50,70,71,73,76,79,92,97,98,101, %T A176548 104,107,110,112,113,124,125,128,130,131,136,140,149,151,152,157,160, %U A176548 164,167,170,172,175,179,181,182,188,191,196,199,200,300,310,311,313,316 %N A176548 Non-semiprimes whose reversal is a prime. %p A176548 A100959 := proc(n) option remember ; if n <= 3 then n ; else for a from procname(n-1)+1 do if numtheory[bigomega](a) <> 2 then return a; end if; end do: end if: end proc: read("transforms") ; for n from 1 to 300 do c := A100959(n) ; if isprime(digrev(c)) then printf("%d,",c) ; end if; end do: # _R. J. Mathar_, Apr 27 2010 %t A176548 Select[Range[400],PrimeOmega[#]!=2&&PrimeQ[FromDigits[Reverse[ IntegerDigits[ #]]]]&] (* _Harvey P. Dale_, Jan 03 2015 *) %Y A176548 Cf. A100959. %K A176548 nonn,base %O A176548 1,1 %A A176548 _Juri-Stepan Gerasimov_, Apr 20 2010 %E A176548 Corrected (20, 30, 50, 70, 76, 92, 110, 128, etc. inserted) by _R. J. Mathar_, Apr 27 2010