|
Search: id:A091706
|
|
|
| A091706 |
|
Number of primes less than 10^n having at least one digit 5. |
|
+0 8
|
|
| 1, 3, 32, 324, 3282, 31949, 309669, 2995706, 28891689, 278270868, 2678674624, 25780340194
(list; graph; listen)
|
|
|
OFFSET
|
1,2
|
|
|
EXAMPLE
|
a(1) = 1 because of the 4 primes less than 10^1, 1 has at least one digit 5.
|
|
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], 5] != {}, c++ ]]; Print[c]; p--, {n, 1, 8}] (from Robert G. Wilson v Feb 02 2004)
|
|
CROSSREFS
|
a(n) + A091639(n) = A006880(n).
Cf. A091744, A091745, A091746, A091747, A046029, A091707, A091708, A091709, A091710.
Sequence in context: A037792 A037673 A037799 this_sequence A091705 A137215 A123336
Adjacent sequences: A091703 A091704 A091705 this_sequence A091707 A091708 A091709
|
|
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 21 2005
|
|
|
Search completed in 0.002 seconds
|