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!)
A055728 Number of prime lucky numbers <10^n. 1
0, 2, 9, 43, 211, 1300, 8616, 62446, 469146, 3656784, 29285501, 239911086 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
EXAMPLE
a(2) = 9 since there are 9 prime numbers in the lucky number sequence A000959 that are less than 10^2 (3, 7, 13, 31, 37, 43, 67, 73, and 79).
MATHEMATICA
lst = Range[1, 10^8, 2]; i = 2; While[ i <= (len = Length@lst) && (k = lst[[i]]) <= len, lst = Drop[lst, {k, len, k}]; i++ ]; Table[Length@ Select[lst, PrimeQ@# && # < 10^n &], {n, 0, 8}] (* Robert G. Wilson v, May 12 2006 *)
CROSSREFS
Sequence in context: A217666 A002310 A309986 * A006795 A055824 A334680
KEYWORD
nonn,more
AUTHOR
Robert G. Wilson v, Jun 09 2000
EXTENSIONS
a(7)-a(8) from Robert G. Wilson v, May 12 2006
a(9) from Donovan Johnson, Jul 06 2010
a(10) from Kevin P. Thompson, Nov 22 2021
a(11) from Dana Jacobsen, Mar 08 2023
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 25 05:18 EDT 2024. Contains 371964 sequences. (Running on oeis4.)