A007950 Binary sieve: delete every 2nd number, then every 4th, 8th, etc.
1, 3, 5, 9, 11, 13, 17, 21, 25, 27, 29, 33, 35, 37, 43, 49, 51, 53, 57, 59, 65, 67, 69, 73, 75, 77, 81, 85, 89, 91, 97, 101, 107, 109, 113, 115, 117, 121, 123, 129, 131, 133, 137, 139, 145, 149, 153, 155, 157, 161, 163, 165, 171, 173, 177, 179, 181, 185, 187, 195, 197
Offset: 1
References
- F. Smarandache, Properties of Numbers, 1972.
Links
- T. D. Noe, Table of n, a(n) for n = 1..10000
- C. Dumitrescu & V. Seleacu, editors, Some Notions and Questions in Number Theory, Vol. I.
- F. Smarandache, Only Problems, Not Solutions!, 4th ed., 1993, Problem 95.
- Index entries for sequences generated by sieves
Programs
-
Mathematica
t = Range@200; f[n_] := Block[{k = 2^n}, t = Delete[t, Table[{k}, {k, k, Length@t, k}]]]; Do[ f@n, {n, 6}]; t (* Robert G. Wilson v, Sep 14 2006 *)
Extensions
More terms from Robert G. Wilson v, Sep 14 2006
Comments