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.

A215610 Odd integers n such that 2^n == 2^6 (mod n).

Original entry on oeis.org

1, 31, 18631, 55831, 92329, 3014633, 3556559, 6429121, 9664591, 12158831, 33554431, 34844431, 566740481, 644903881, 727815241, 842608801, 2207017049, 2208171881, 2445644207, 8694918511, 9031128791, 18738146881, 27345981361, 35476604081
Offset: 1

Views

Author

Max Alekseyev, Aug 17 2012

Keywords

Comments

Also, the odd solutions to 2^(n-6) == 1 (mod n). The only even solution is n=6.
For all m, 2^A033981(m)-1 belongs to this sequence.

Crossrefs

The odd terms of A015926.

Programs

  • Mathematica
    m = 64; Join[Select[Range[1, m, 2], Divisible[2^# - m, #] &],
    Select[Range[m + 1, 10^6, 2], PowerMod[2, #, #] == m &]] (* Robert Price, Oct 08 2018 *)