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.

Showing 1-1 of 1 results.

A282943 Numbers k such that 3*2^k + 1 is a prime factor of a generalized Fermat number 7^(2^m) + 1 for some m.

Original entry on oeis.org

8, 12, 36, 276, 408, 2208, 2816, 3168, 3912, 42665, 44685, 59973, 709968, 916773, 1832496
Offset: 1

Views

Author

Arkadiusz Wesolowski, Feb 25 2017

Keywords

Crossrefs

Programs

  • Magma
    SetDefaultRealField(RealField(400)); IsInteger := func; [n: n in [2..408] | IsPrime(k) and IsInteger(Log(2, Modorder(7, k))) where k is 3*2^n+1];
  • Mathematica
    lst = {}; Do[p = 3*2^n + 1; If[PrimeQ[p] && IntegerQ@Log[2, MultiplicativeOrder[7, p]], AppendTo[lst, n]], {n, 3912}]; lst
Showing 1-1 of 1 results.