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

A171048
In the sequence of prime numbers, replace all the '8' digits with '7' and vice versa.
3
2, 3, 5, 8, 11, 13, 18, 19, 23, 29, 31, 38, 41, 43, 48, 53, 59, 61, 68, 81, 83, 89, 73, 79, 98, 101, 103, 108, 109, 113, 128, 131, 138, 139, 149, 151, 158, 163, 168, 183, 189, 171, 191, 193, 198, 199, 211, 223, 228, 229, 233, 239, 241, 251, 258, 263
OFFSET
1,1
LINKS
MATHEMATICA
FromDigits[IntegerDigits[#]/.{8->p, 7->q}/.{p->7, q->8}]&/@Prime[Range[100]] (* Vincenzo Librandi, Mar 11 2013 *)
PROG
(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
CROSSREFS
Sequence in context: A106637 A246361 A228855 * A209292 A185371 A071894
KEYWORD
nonn,base,easy
AUTHOR
STATUS
approved