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 A180518 #8 Oct 16 2016 09:50:51 %S A180518 37,101,107,109,131,137,139,307,311,317,337,347,359,367,379,389,397, %T A180518 401,409,431,439,601,631,709,739,809,839,907,937,1019,1021,1031,1061, %U A180518 1201,1231,1301,1319,1321,1361,1409,1439,1607,1637,1801,1831,1901,1931,2011 %N A180518 Primes that become a different prime under the mapping 0 <=> 3. %H A180518 Harvey P. Dale, <a href="/A180518/b180518.txt">Table of n, a(n) for n = 1..1000</a> %H A180518 <a href="/index/Pri#primes">Index to Primes</a>, Primes that become a different prime under some mapping. %t A180518 fQ[n_] := Block[{id = IntegerDigits@n}, (MemberQ[id, 0] || MemberQ[id, 3]) && PrimeQ[ FromDigits[ id /. {0 -> 3, 3 -> 0}] ]]; Select[ Prime@ Range@ 350, fQ] %t A180518 dp03Q[n_]:=Module[{c=FromDigits[IntegerDigits[n]/.{0->3,3->0}]},c!=n && PrimeQ[ c]]; Select[Prime[Range[350]],dp03Q] (* _Harvey P. Dale_, Oct 16 2016 *) %Y A180518 Cf. A171016, A175791, A180517 thru A180559, A175789, A180560, A180561. %K A180518 base,nonn %O A180518 1,1 %A A180518 _Zak Seidov_ and _Robert G. Wilson v_, Sep 09 2010