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”).

A171018
In the sequence of prime numbers, replace all the '3' digits with '2' and vice versa.
46
3, 2, 5, 7, 11, 12, 17, 19, 32, 39, 21, 27, 41, 42, 47, 52, 59, 61, 67, 71, 72, 79, 82, 89, 97, 101, 102, 107, 109, 112, 137, 121, 127, 129, 149, 151, 157, 162, 167, 172, 179, 181, 191, 192, 197, 199, 311, 332, 337, 339, 322, 329, 341, 351, 357, 362
OFFSET
1,1
LINKS
MATHEMATICA
f[n_]:=FromDigits[(IntegerDigits[n]/.{2->a, 3->b}) /.{a->3, b->2}]; f/@Prime[Range[80]] (* Harvey P. Dale, Apr 01 2011 *)
PROG
(PARI) a(n)=my(v=[0, 1, 3, 2, 4, 5, 6, 7, 8, 9]); apply(k->v[k+1], digits(prime(n))) \\ Charles R Greathouse IV, Jul 16 2013
CROSSREFS
Sequence in context: A266635 A110338 A371221 * A350192 A239260 A013655
KEYWORD
nonn,base,easy
AUTHOR
STATUS
approved