cp's OEIS Frontend

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.

A228418 Count of the first 10^n primes which do not contain the digit 6.

Original entry on oeis.org

1, 10, 90, 719, 6696, 60845, 554933, 4742037, 43331008, 392875212, 3573268469, 31207451849, 282765603085
Offset: 0

Views

Author

Robert Price, Nov 09 2013

Keywords

Examples

			a(1) = 10 since there are 10 primes in the first 10 (through 29) that do not contain a 6.  Namely: 2, 3, 5, 7, 11, 13, 17, 19, 23, 29.
		

Crossrefs

Programs

  • Mathematica
    Table[Length[Select[Range[10^n], DigitCount[Prime[#], 10, 6] == 0 &]], {n, 0, 5}] (* Robert Price, Mar 23 2020 *)

Formula

a(n) <= 9^n. - Charles R Greathouse IV, May 21 2014

Extensions

a(12) from Lucas A. Brown, Mar 19 2024