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!)
A292349 Pri-most primes: primes p such that the majority of bits in the binary representation of p satisfy the following: complementing this bit produces a prime number. 1
7, 19, 23, 43, 71, 101 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Primes in A292348.
Conjecture: the sequence is finite.
LINKS
MATHEMATICA
Select[Prime@ Range[10^5], Function[n, Function[d, 2 Count[Array[FromDigits[#, 2] &@ MapAt[Mod[# + 1, 2] &, d, #] &, Length@ d], _?PrimeQ] > Length@ d]@ IntegerDigits[n, 2]]] (* Michael De Vlieger, Dec 08 2017 *)
PROG
(Python)
from sympy import isprime, primerange
for i in primerange(1, 1000):
delta = 0
bit = 1
while bit <= i:
if isprime(i^bit): delta += 1
else: delta -= 1
bit*=2
if delta > 0: print(str(i), end=', ')
CROSSREFS
Sequence in context: A032680 A141831 A176182 * A065749 A032642 A127633
KEYWORD
nonn,base,more
AUTHOR
Alex Ratushnyak, Dec 07 2017
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 April 19 05:19 EDT 2024. Contains 371782 sequences. (Running on oeis4.)