OFFSET
0,2
COMMENTS
As the two links show, lucky numbers possess a number of characteristics that are similar to those of the primes. This stems from the fact that both are the result of a sieving process. See A006880.
LINKS
W. Schneider, Lucky Numbers
Eric Weisstein's World of Mathematics, Lucky Numbers
MATHEMATICA
lst = Range[1, 10^6, 2]; i = 2; While[ i <= (len = Length@lst) && (k = lst[[i]]) <= len, lst = Drop[lst, {k, len, k}]; i++ ]; Table[ Length@ Select[t, #<=10^n &], {n, 8}] (* Robert G. Wilson v *)
CROSSREFS
KEYWORD
base,more,nonn
AUTHOR
Robert G. Wilson v, Jun 09 2000
EXTENSIONS
a(8),a(9) were calculated by Walter Schneider (wschnei(AT)t-online.de).
a(10) from Robert G. Wilson v, Oct 16 2010
a(11)-a(15) from Hiroaki Yamanouchi, May 07 2015
STATUS
approved