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

 


A168162
Numbers n which do not exceed the sum of the binary digits in all primes <= n.
2
3, 5, 7, 8, 11, 13, 14, 19, 23, 31, 32, 47, 61
OFFSET
1,1
COMMENTS
The sequence A168161 is a subsequence of the primes in this sequence.
FORMULA
A168162 = { n | n <= A095375(pi(n)) }, where pi(n) = A000720(n).
EXAMPLE
There is no prime <= 1 and 2 has only nonzero binary digit, therefore these numbers are not in the sequence.
However, a(1)=3 has two binary digits, so the total number of these equal 3.
Then, 4 is larger than this, but the prime p=5 again adds 2 nonzero binary digits adding to a total of 5=a(2).
Then 6 is larger than this, but the prime p=7 adds 3 more nonzero bits for a total of 8, such that a(3)=7 and a(4)=8 don't exceed this.
PROG
(PARI) s=0; for(n=1, 9999, isprime(n) && s+=norml2(binary(n)); n<=s & print1(n", "))
CROSSREFS
Sequence in context: A190333 A190061 A288624 * A047485 A024969 A296233
KEYWORD
fini,full,nonn,base
AUTHOR
M. F. Hasler, Nov 22 2009
STATUS
approved

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 12:15 EDT 2024. Contains 376164 sequences. (Running on oeis4.)