OFFSET
1,1
COMMENTS
Positive numbers k that are divisible by the sums of digits in the negabinary representations of both k and -k.
All the powers of 2 above 1 are terms.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
MATHEMATICA
negaBinWt[n_] := negaBinWt[n] = If[n==0, 0, negaBinWt[Quotient[n-1, -2]] + Mod[n, 2]]; seqQ[n_] := And @@ (Divisible[n, negaBinWt[#]] & /@ {-n, n}); Select[Range[200], seqQ]
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Amiram Eldar, Jan 28 2020
STATUS
approved