%I #11 Mar 31 2017 00:49:35
%S 2,3,5,8,11,13,18,19,23,29,31,38,41,43,48,53,59,61,68,81,83,89,73,79,
%T 98,101,103,108,109,113,128,131,138,139,149,151,158,163,168,183,189,
%U 171,191,193,198,199,211,223,228,229,233,239,241,251,258,263
%N In the sequence of prime numbers, replace all the '8' digits with '7' and vice versa.
%H Vincenzo Librandi, <a href="/A171048/b171048.txt">Table of n, a(n) for n = 1..1000</a>
%t FromDigits[IntegerDigits[#]/.{8->p, 7->q}/.{p->7, q->8}]&/@Prime[Range[100]] (* _Vincenzo Librandi_, Mar 11 2013 *)
%o (PARI) a(n)=my(v=[0,1,2,3,4,5,6,8,7,9]);subst(Pol(apply(k->v[k+1], digits(prime(n)))),'x,10) \\ _Charles R Greathouse IV_, Jul 31 2013
%K nonn,base,easy
%O 1,1
%A _N. J. A. Sloane_ and _Vincenzo Librandi_, Sep 04 2010