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.

A050259 Numbers n such that 2^n == 3 (mod n).

Original entry on oeis.org

1, 4700063497, 3468371109448915, 8365386194032363, 10991007971508067
Offset: 1

Views

Author

Keywords

Comments

No other terms below 10^18. - Max Alekseyev, Oct 17 2017
Terms were computed: a(2) by the Lehmers, a(3) by Max Alekseyev, a(4) and a(5) by Joe K. Crump, a(?) = 63130707451134435989380140059866138830623361447484274774099906755 by P.-L. Montgomery.

References

  • R. Daniel Mauldin and S. M. Ulam, Mathematical problems and games. Adv. in Appl. Math. 8 (1987), pp. 281-344.

Crossrefs

Programs

  • Mathematica
    m = 2; Join[Select[Range[m], Divisible[2^# - m, #] &],
    Select[Range[m + 1, 10^6], PowerMod[2, #, #] == m &]] (* Robert Price, Oct 08 2018 *)
  • PARI
    is(n)=Mod(2,n)^n==3 \\ Charles R Greathouse IV, Jun 11 2015