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

A107932
Numbers n such that n and n-th prime have only one common digit = 1.
3
11, 13, 18, 31, 41, 81, 100, 112, 113, 114, 115, 121, 125, 126, 128, 133, 135, 141, 152, 156, 157, 160, 164, 167, 171, 174, 175, 176, 177, 178, 179, 182, 184, 185, 186, 188, 190, 191, 192, 193, 194, 195, 197, 198, 199
OFFSET
1,1
COMMENTS
Other cases of common digit d: A107931 (d=0), A107933 (d=2), A107934 (d=3), A107935 (d=4), A107936 (d=5), A107937 (d=6), A107938 (d=7), A107939 (d=8), A107940 (d=9). Cf. A107930 - smallest m's for digits 0,...,9.
EXAMPLE
a(1)=11 because 11th prime, 31 and 11 have the only common digit = 1 and 11 is the smallest such a number.
MATHEMATICA
bb={}; Do[If[IntegerDigits [n]\[Intersection]IntegerDigits [ Prime[n]]\[Equal]{1}, bb=Append[bb, n]], {n, 200}]; bb
CROSSREFS
Sequence in context: A088561 A211457 A154523 * A143365 A090137 A358573
KEYWORD
nonn,base
AUTHOR
Zak Seidov, May 28 2005
STATUS
approved