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 A180548 #11 Oct 30 2023 17:11:58 %S A180548 41,43,71,73,149,179,241,271,349,379,401,409,419,433,439,443,461,541, %T A180548 571,643,673,701,709,719,733,739,761,773,941,971,1249,1279,1409,1423, %U A180548 1433,1453,1459,1471,1483,1489,1549,1579,1709,1723,1733,1741,1753,1759 %N A180548 Primes that become a different prime under the mapping 4 <=> 7. %H A180548 Robert Price, <a href="/A180548/b180548.txt">Table of n, a(n) for n = 1..2779</a> %H A180548 <a href="/index/Pri#primes">Index to Primes</a>, Primes that become a different prime under some mapping. %t A180548 fQ[n_] := Block[{id = IntegerDigits@n}, (MemberQ[id, 4] || MemberQ[id, 7]) && PrimeQ[ FromDigits[ id /. {4 -> 7, 7 -> 4}] ]]; Select[ Prime@ Range@ 300, fQ] %Y A180548 Cf. A171038, A175791, A180517 thru A180559, A175789, A180560, A180561. %K A180548 base,nonn %O A180548 1,1 %A A180548 _Zak Seidov_ and _Robert G. Wilson v_, Sep 09 2010