OFFSET
0,2
COMMENTS
EXAMPLE
111 = 3*37. When these two prime factors (both terms of A091206), with binary representations '11' and '100101', are multiplied as:
100101
1001010
-------
1101111 = 111 in decimal
we see that the intermediate products 1*37 and 2*37 can be added together without producing any carry-bits (as they have no 1-bits in the same columns/bit-positions), so A048720(3,37) = 3*37 and thus 111 is included in this sequence.
PROG
(Scheme, with Antti Karttunen's IntSeq-library)
(define A235039 (MATCHING-POS 0 1 (lambda (n) (and (odd? n) (not (prime? n)) (equal? (ifactor n) (GF2Xfactor n))))))
CROSSREFS
KEYWORD
nonn
AUTHOR
Antti Karttunen, Jan 02 2014
STATUS
approved