editing
approved
editing
approved
odiousQ[n_]:=OddQ[DigitCount[n, 2][[1]]]; selQ[n_]:=OddQ[n] && Length[Union[Map[odiousQ, Map[n #&, Divisors[n]]]]] == 1; Select[Range[400], selQ] (* _Peter J. C. Moses_, Nov 10 2013 *)
selQ[n_]:=OddQ[n]&&Length[Union[Map[odiousQ, Map[n #&, Divisors[n]]]]]==1;
Select[Range[400], selQ] (* Peter J. C. Moses, Nov 10 2013 *)
proposed
editing
editing
proposed
More terms from _Mishel Michel Marcus_
More terms from _Mishel Marcus_
Peter J. C. Moses, <a href="/A228436/b228436.txt">Table of n, a(n) for n = 1..5000</a>
odiousQ[n_]:=OddQ[DigitCount[n, 2][[1]]];
selQ[n_]:=OddQ[n]&&Length[Union[Map[odiousQ, Map[n #&, Divisors[n]]]]]==1;
Select[Range[400], selQ] (* Peter J. C. Moses, Nov 10 2013 *)
proposed
editing
editing
proposed
1, 3, 7, 11, 15, 19, 31, 41, 53, 59, 63, 67, 79, 83, 91, 97, 103, 105, 117, 127, 131, 141, 157, 167, 173, 179, 181, 185, 193, 217, 219, 223, 227, 229, 237, 239, 251, 255, 269, 271, 277, 281, 283, 291, 293, 303, 307, 311, 313, 317, 337, 347, 351, 359, 377
(PARI) isok(n) = (n % 2) && (!(s = sumdiv(n, d, hammingweight(n*d) % 2)) || (s == numdiv(n))); \\ Michel Marcus, Nov 10 2013
proposed
editing
editing
proposed