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.

A226643 Numbers n such that the binary XOR of the divisors of n (A178910) is a binary palindrome (A006995) and not a power of 2 (A000079).

Original entry on oeis.org

81, 162, 169, 324, 338, 648, 676, 1296, 1352, 2401, 2592, 2704, 3249, 4802, 5184, 5408, 6498, 9604, 10368, 10816, 12996, 19208, 20736, 21632, 25992, 38416, 41472, 43264, 51984, 76832, 82944, 86528, 103968, 112225, 153664, 165888, 173056, 194481
Offset: 1

Views

Author

Robert G. Wilson v, Aug 18 2013

Keywords

Comments

A takeoff of A227843.

Crossrefs

Programs

  • Mathematica
    f[n_] := Fold[ BitXor[#1, #2] &, 0, Divisors@ n]; palQ[n_Integer, base_Integer] := Module[{idn = IntegerDigits[n, base]}, idn == Reverse@ idn]; fQ[n_] := palQ[ f@ n, 2] && ! IntegerQ@ Log2@ n; Select[ Range@ 200000, fQ]