The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A095747 Maximally asymmetric odd primes in binary. 3
3, 5, 7, 11, 13, 19, 23, 29, 43, 53, 71, 79, 83, 101, 109, 113, 151, 179, 233, 241, 271, 311, 331, 347, 397, 421, 457, 599, 683, 739, 797, 853, 937, 977, 1087, 1103, 1223, 1307, 1427, 1459, 1597, 1613, 1733, 2017, 2111, 2143, 2503, 2731, 3011 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Primes p for which A037888(p) = floor((A070939(p)-2)/2). Those numbers contain just the first and last bits mirroring each other. Hence all the odd primes without leading zeros begin and end in 1 bits, the unique totally asymmetric prime being (10)_2 = 2.
LINKS
EXAMPLE
a(10)=(110101)2 since the symmetry is limited to the first and last bits. The number 47=(101111)2 is not a term because from left to right, the third bit matches with the fourth.
PROG
(PARI)A070939(p)={return(floor(log(p)/log(2))+1)};
A037888(p)={v=binary(p); s=0; j=#v; for(k=1, #v, s+=abs(v[k]-v[j]); j--); return(s/2); }; forprime(p=3, 3011, if(A037888(p) ==floor((A070939(p)-2)/2), print1(p, ", ")))
CROSSREFS
Sequence in context: A079733 A179538 A216371 * A132779 A192869 A147513
KEYWORD
nonn,base
AUTHOR
Antti Karttunen, Jun 12 2004
EXTENSIONS
Edited by Washington Bomfim, Jan 13 2011
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | 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 May 20 23:09 EDT 2024. Contains 372720 sequences. (Running on oeis4.)