This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A038612 #49 Jul 23 2025 00:25:14 %S A038612 2,3,5,7,11,13,17,19,23,29,31,37,53,59,61,67,71,73,79,83,89,97,101, %T A038612 103,107,109,113,127,131,137,139,151,157,163,167,173,179,181,191,193, %U A038612 197,199,211,223,227,229,233,239,251,257,263,269,271,277,281,283,293 %N A038612 Primes not containing the digit '4'. %C A038612 Subsequence of primes of A052406. - _Michel Marcus_, Feb 22 2015 %C A038612 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 %H A038612 Jason Bard, <a href="/A038612/b038612.txt">Table of n, a(n) for n = 1..10000</a> %H A038612 M. F. Hasler, <a href="/wiki/Numbers_avoiding_certain_digits">Numbers avoiding certain digits</a> OEIS wiki, Jan 12 2020. %H A038612 James Maynard, <a href="http://arxiv.org/abs/1604.01041">Primes with restricted digits</a>, arXiv:1604.01041 [math.NT], 2016. %H A038612 James Maynard and Brady Haran, <a href="https://www.youtube.com/watch?v=eeoBCS7IEqs">Primes without a 7</a>, Numberphile video (2019). %H A038612 <a href="/index/Pri#PrimesWithDigits">Index to entries for primes with digits in a given set</a> %F A038612 a(n) ≍ n^(log 10/log 9) log n. - _Charles R Greathouse IV_, Aug 03 2023 %t A038612 Select[Prime[Range[70]], DigitCount[#, 10, 4] == 0 &] (* _Vincenzo Librandi_, Aug 08 2011 *) %o A038612 (Magma) [ p: p in PrimesUpTo(300) | not 4 in Intseq(p) ]; // _Bruno Berselli_, Aug 08 2011 %o A038612 (PARI) lista(nn)=forprime(p=2, nn, if (!vecsearch(vecsort(digits(p),,8), 4), print1(p, ", "));); \\ _Michel Marcus_, Feb 22 2015 %o A038612 (PARI) ( {A038612_upto(N)=select( is_A052406, primes([1, N]))} )(444) \\ or better: %o A038612 next_A038612(n)={until(isprime(n), n=next_A052406(nextprime(n+1)-1)); n} %o A038612 ( {A038612_vec(n,M=1)=M--;vector(n,i, n=next_A038612(if(i>1, n)))} )(20, 1000) %o A038612 \\ (See the OEIS wiki page for more.) - _M. F. Hasler_, Jan 12 2020 %Y A038612 Intersection of A000040 (primes) and A052406 (numbers without digit 4). %Y A038612 Primes having no digit d = 0..9 are A038618, A038603, A038604, A038611, this sequence, A038613, A038614, A038615, A038616, and A038617, respectively. %K A038612 nonn,easy,base %O A038612 1,1 %A A038612 Vasiliy Danilov (danilovv(AT)usa.net), Jul 15 1998 %E A038612 Offset corrected by _Arkadiusz Wesolowski_, Aug 07 2011