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.

A231726 Count of the first 10^n primes containing at least one 0's digit.

Original entry on oeis.org

0, 9, 181, 2878, 38298, 442776, 4937680, 54997237, 604120810, 6420599395, 67512632285
Offset: 1

Views

Author

Robert Price, Nov 12 2013

Keywords

Examples

			a(2)=9 because there are 9 primes not greater than 547 (the 100th prime) that contain a zero digit.  Namely: 101, 103, 107, 109, 307, 401, 409, 503, 509.
		

Crossrefs

Programs

  • Mathematica
    cnt = 0; Table[Do[p = Prime[k]; If[MemberQ[IntegerDigits[p], 0], cnt++], {k, 10^(n - 1) + 1, 10^n}]; cnt, {n, 5}] (* T. D. Noe, Nov 13 2013 *)

Formula

a(n) ~ 10^n. - Charles R Greathouse IV, May 21 2014