cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A102210 Number of primes that are bitwise covered by n.

Original entry on oeis.org

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, 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, 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
Offset: 1

Views

Author

Reinhard Zumkeller, Dec 30 2004

Keywords

Comments

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

Examples

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

Crossrefs

Programs

Formula

a(A102211(n)) = 0; a(A102212(n)) = 1; a(A102213(n)) > 1.
a(2^k-1) = A007053(k) for k > 1. - Amiram Eldar, Jan 12 2020