OFFSET
1,1
COMMENTS
Subsequence of primes of A052421. - Michel Marcus, Feb 22 2015
Maynard proves that this sequence is infinite and in particular contains the expected number of elements up to x, on the order of x^(log 9/log 10)/log x. - Charles R Greathouse IV, Apr 08 2016
LINKS
Indranil Ghosh, Table of n, a(n) for n = 1..50000
M. F. Hasler, Numbers avoiding certain digits, OEIS Wiki, Jan 12 2020.
James Maynard, Primes with restricted digits, arXiv:1604.01041 [math.NT], 2016.
James Maynard and Brady Haran, Primes without a 7, Numberphile video (2019).
FORMULA
a(n) ~ n^(log 10/log 9) log n. - Charles R Greathouse IV, Aug 03 2023
MATHEMATICA
Select[Prime[Range[70]], DigitCount[#, 10, 8] == 0 &] (* Harvey P. Dale, Jan 24 2011 *)
PROG
(Magma) [ p: p in PrimesUpTo(400) | not 8 in Intseq(p) ]; // Bruno Berselli, Aug 08 2011
(PARI) lista(nn)=forprime(p=2, nn, if (!vecsearch(vecsort(digits(p), , 8), 8), print1(p, ", ")); ); \\ Michel Marcus, Feb 22 2015
(PARI) next_A038616(n)=until((n=nextprime(n+1))==(n=next_A052421(n-1)), ); n \\ M. F. Hasler, Jan 14 2020
CROSSREFS
KEYWORD
nonn,easy,base
AUTHOR
Vasiliy Danilov (danilovv(AT)usa.net), Jul 15 1998
EXTENSIONS
Offset corrected by Arkadiusz Wesolowski, Aug 07 2011
STATUS
approved