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.

A215613 Odd integers n such that 2^n == 2^12 (mod n).

Original entry on oeis.org

1, 23, 89, 2047, 5969, 1803407, 6531977, 6667079, 7694041, 16252897, 146825647, 284464633, 315096487, 351745417, 413414167, 512694047, 615366953, 2723423687, 3104303327, 3969298807, 5754671737, 7242954137, 8766711119, 14046374879
Offset: 1

Views

Author

Max Alekseyev, Aug 17 2012

Keywords

Comments

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

Crossrefs

The odd terms of A015937.

Programs

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