|
Search: id:A091647
|
|
|
| A091647 |
|
Number of primes less than 10^n having at least one digit 3. |
|
+0 4
|
|
| 1, 9, 66, 561, 4877, 43685, 399564, 3694303, 34433999, 322852288, 3041362298, 28758431735
(list; graph; listen)
|
|
|
OFFSET
|
1,2
|
|
|
EXAMPLE
|
a(2) = 9 because of the 25 primes less than 10^2, 9 have at least one digit 3.
|
|
MATHEMATICA
|
NextPrim[n_] := Block[{k = n + 1}, While[ !PrimeQ[k], k++ ]; k]; c = 0; p = 1; Do[ While[ p = NextPrim[p]; p < 10^n, If[ Position[ IntegerDigits[p], 3] != {}, c++ ]]; Print[c]; p--, {n, 1, 8}] (from Robert G. Wilson v Feb 02 2004)
|
|
CROSSREFS
|
a(n) + A091637(n) = A006880(n).
Cf. A091637, A091744, A091745, A091746, A091705, A091706, A091707, A091708, A091709, A091710.
Sequence in context: A048439 A134432 A098107 this_sequence A106132 A105287 A163349
Adjacent sequences: A091644 A091645 A091646 this_sequence A091648 A091649 A091650
|
|
KEYWORD
|
nonn,base
|
|
AUTHOR
|
Enoch Haga (Enokh(AT)comcast.net), Jan 30 2004
|
|
EXTENSIONS
|
Edited and extended by Robert G. Wilson v (rgwv(AT)rgwv.com), Feb 02 2004
3 more terms from Ryan Propper (rpropper(AT)stanford.edu), Aug 20 2005
|
|
|
Search completed in 0.002 seconds
|