A038615 Primes not containing the digit '7'.
2, 3, 5, 11, 13, 19, 23, 29, 31, 41, 43, 53, 59, 61, 83, 89, 101, 103, 109, 113, 131, 139, 149, 151, 163, 181, 191, 193, 199, 211, 223, 229, 233, 239, 241, 251, 263, 269, 281, 283, 293, 311, 313, 331, 349, 353, 359, 383, 389, 401, 409, 419, 421, 431, 433, 439
Offset: 1
Links
- Alois P. Heinz, Table of n, a(n) for n = 1..20000
- Marianne Freiberger, Primes without 7s, +plus magazine, August 2016.
- 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).
- Index to entries for primes with digits in a given set
Crossrefs
Programs
-
Magma
[ p: p in PrimesUpTo(500) | not 7 in Intseq(p) ]; // Bruno Berselli, Aug 08 2011
-
Mathematica
Select[Prime[Range[70]], DigitCount[#, 10, 7] == 0 &] (* Vincenzo Librandi, Aug 08 2011 *)
-
PARI
lista(nn)=forprime(p=2, nn, if (!vecsearch(vecsort(digits(p),,8), 7), print1(p, ", "));); \\ Michel Marcus, Feb 22 2015
-
PARI
(A038615_upto(N)=select( is_A052419, primes([1,N])))(444) \\ i.e.: {is_A038615(n)=is_A052419(n)&&isprime(n)}; {is_A052419(n)=!setsearch(Set(digits(n)),7)}. - M. F. Hasler, Jan 11 2020
Formula
a(n) ~ n^(log 10/log 9) * log(n). - Charles R Greathouse IV, Aug 03 2023
Extensions
Offset corrected by Arkadiusz Wesolowski, Aug 07 2011
Comments