A095323 Primes in whose binary expansion the number of 1 bits is <= 4 + number of 0 bits.
2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97, 101, 103, 107, 109, 113, 131, 137, 139, 149, 151, 157, 163, 167, 173, 179, 181, 193, 197, 199, 211, 227, 229, 233, 241, 257, 263, 269, 271, 277, 281, 283, 293
Offset: 1
Links
- A. Karttunen and J. Moyer: C-program for computing the initial terms of this sequence
Programs
-
Mathematica
Select[Prime[Range[100]],DigitCount[#,2,1]<(5+DigitCount[#,2,0])&] (* Harvey P. Dale, Dec 09 2015 *)
-
PARI
B(x) = { nB = floor(log(x)/log(2)); b1 = 0; b0 = 0; for(i = 0, nB, if(bittest(x,i), b1++;, b0++;); ); if(b1 <= (4+b0), return(1);, return(0););}; forprime(x = 2, 293, if(B(x), print1(x, ", "); ); ); \\ Washington Bomfim, Jan 12 2011
Comments