cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A231271 Numbers k such that k and k+d are both odious (A000069) or both evil (A001969) for every divisor d of k.

Original entry on oeis.org

1, 5, 7, 9, 13, 17, 23, 29, 31, 37, 41, 49, 53, 61, 71, 73, 85, 89, 97, 101, 103, 109, 113, 119, 125, 127, 129, 133, 137, 149, 151, 157, 167, 173, 181, 193, 197, 199, 217, 223, 229, 233, 241, 249, 257, 263, 269, 277, 281, 293, 311, 313, 317, 321, 325, 337, 341
Offset: 1

Views

Author

Vladimir Shevelev, Nov 06 2013

Keywords

Comments

A prime p is a term iff its binary expansion ends in odd number of 1's (A095283). All terms are in A079523.

Examples

			The odious number k = 341 has divisors {1, 11, 31, 341}. Since the numbers 341 + 1 = 342, 341 + 11 = 352, 341 + 31 = 372, 341 + 341 = 682 are all odious, then 341 is a term.
		

Crossrefs

Programs

  • Mathematica
    odiousQ[n_] := OddQ[DigitCount[n, 2][[1]]];selQ[n_] := Length[Union[Map[odiousQ, Flatten[{n, Map[n+#&, Divisors[n]]}]]]] == 1; Select[Range[200], selQ] (* Peter J. C. Moses, Nov 08 2013 *)
  • PARI
    is(k) = {my(hw = hammingweight(k) % 2); fordiv(k, d, if(hammingweight(k+d) % 2 != hw, return(0))); 1;} \\ Amiram Eldar, Aug 12 2024

Extensions

More terms from Peter J. C. Moses, Nov 08 2013