login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


Number of primes that are bitwise covered by n.
6

%I #18 Sep 08 2022 08:45:16

%S 0,1,2,0,1,1,4,0,0,1,3,0,2,1,6,0,1,1,4,0,2,1,7,0,1,1,5,0,4,1,11,0,0,1,

%T 2,0,2,1,5,0,1,1,5,0,4,1,10,0,1,1,4,0,4,1,9,0,2,1,8,0,8,1,18,0,0,1,3,

%U 0,1,1,6,0,1,1,5,0,3,1,10,0,1,1,6,0,2,1,10,0,3,1,9,0,6,1,17,0,1,1,4,0,4,1

%N Number of primes that are bitwise covered by n.

%C p is bitwise covered by n iff (p = (n AND p)) bitwise: A080099(n,p)=p.

%H Amiram Eldar, <a href="/A102210/b102210.txt">Table of n, a(n) for n = 1..10000</a>

%H <a href="/index/Bi#binary">Index entries for sequences related to binary expansion of n</a>

%F a(A102211(n)) = 0; a(A102212(n)) = 1; a(A102213(n)) > 1.

%F a(2^k-1) = A007053(k) for k > 1. - _Amiram Eldar_, Jan 12 2020

%e n=21->10101 -> a(21) = #{00101=5,10001=17} = 2.

%t a[n_] := Count[Range[n], _?(PrimeQ[#] && BitAnd[n, #] == # &)]; Array[a, 100] (* _Amiram Eldar_, Jan 12 2020 *)

%o (Magma) [#[p:p in PrimesUpTo(n)| p eq BitwiseAnd(n,p)] :n in [1..105] ]; // _Marius A. Burtea_, Jan 12 2020

%Y Cf. A007053, A007088, A004676, A080099, A102211, A102212, A102213, A102550.

%K nonn,base

%O 1,3

%A _Reinhard Zumkeller_, Dec 30 2004

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | 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 September 23 05:13 EDT 2024. Contains 376143 sequences. (Running on oeis4.)