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.

A346542 Numbers k such that 5*2^k + 1 is an elite prime (A102742).

Original entry on oeis.org

3, 15, 55, 26607, 209787, 819739
Offset: 1

Views

Author

Arkadiusz Wesolowski, Sep 16 2021

Keywords

Comments

An integer k is in this sequence if and only if there is no solution to the congruence x^2 == 2^(2^k) + 1 (mod p), where p is a prime of the form 5*2^k + 1.
a(7) > 9*10^6.

Crossrefs

Subsequence of A002254.
Cf. A102742.

Programs

  • PARI
    isok(k)=my(p=5*2^k+1); k>2 && Mod(k, 2)==1 && Mod(3, p)^((p-1)/2)+1==0 && kronecker(lift(Mod(2, p)^2^k)+1, p)==-1;