login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A171037
In the sequence of prime numbers, replace all the '7' digits with '3' and vice versa.
3
2, 7, 5, 3, 11, 17, 13, 19, 27, 29, 71, 73, 41, 47, 43, 57, 59, 61, 63, 31, 37, 39, 87, 89, 93, 101, 107, 103, 109, 117, 123, 171, 173, 179, 149, 151, 153, 167, 163, 137, 139, 181, 191, 197, 193, 199, 211, 227, 223, 229, 277, 279, 241, 251, 253, 267
OFFSET
1,1
LINKS
MATHEMATICA
pq[n_]:=Module[{idn=IntegerDigits[n]}, FromDigits[idn/.{7->p, 3->q}/.{p->3, q->7}]]; pq/@Prime[Range[60]] (* Harvey P. Dale, Dec 11 2012 *)
PROG
(PARI) a(n)=my(v=[0, 1, 2, 7, 4, 5, 6, 3, 8, 9]); subst(Pol(apply(k->v[k+1], digits(prime(n)))), 'x, 10) \\ Charles R Greathouse IV, Jul 25 2013
CROSSREFS
Sequence in context: A272699 A138344 A354633 * A246205 A340117 A160669
KEYWORD
nonn,base,easy
AUTHOR
STATUS
approved