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

A171035
In the sequence of prime numbers, replace all the '7' digits with '1' and vice versa.
3
2, 3, 5, 1, 77, 73, 71, 79, 23, 29, 37, 31, 47, 43, 41, 53, 59, 67, 61, 17, 13, 19, 83, 89, 91, 707, 703, 701, 709, 773, 721, 737, 731, 739, 749, 757, 751, 763, 761, 713, 719, 787, 797, 793, 791, 799, 277, 223, 221, 229, 233, 239, 247, 257, 251, 263
OFFSET
1,1
LINKS
MATHEMATICA
FromDigits[IntegerDigits[#]/.{7->p, 1->q}/.{p->1, q->7}]&/@Prime[Range[100]] (* Vincenzo Librandi, Apr 07 2013 *)
PROG
(PARI) a(n)=my(v=[0, 7, 2, 3, 4, 5, 6, 1, 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: A178763 A111141 A069111 * A094122 A280185 A369060
KEYWORD
nonn,base,easy
AUTHOR
STATUS
approved