login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A228421 Count of the first 10^n primes which do not contain the digit 9. 20
1, 8, 69, 620, 5010, 45732, 418142, 3785060, 32579606, 296601070, 2683254222, 24354108057, 212324183352 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) <= 9^n. - Charles R Greathouse IV, May 21 2014
EXAMPLE
a(1) = 8 since there are 8 primes in the first 10 (through 29) that do not contain a 9. Namely: 2, 3, 5, 7, 11, 13, 17, 23.
MATHEMATICA
Table[Length[Select[Range[10^n], DigitCount[Prime[#], 10, 9] == 0 &]], {n, 0, 5}] (* Robert Price, Mar 23 2020 *)
PROG
(Python)
def a(n):
count = 0
for k in range(1, 10**n+1):
if '9' not in str(prime(k)):
count += 1
return count
n = 0
while n < 10:
print(a(n), end=', ')
n += 1
# Derek Orr, Jul 27 2014
CROSSREFS
Sequence in context: A152279 A015575 A214344 * A152109 A222064 A317096
KEYWORD
more,nonn,base,hard
AUTHOR
Robert Price, Nov 09 2013
EXTENSIONS
a(12) from Lucas A. Brown, Mar 19 2024
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 23:26 EDT 2024. Contains 371917 sequences. (Running on oeis4.)