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.

A247830 Pseudoprimes to base 2 divisible by 1093^2.

Original entry on oeis.org

1194649, 3914864773, 5654273717, 6523978189, 22178658685, 26092328809, 31310555641, 41747009305, 53053167441, 58706246509, 74795779241, 85667085141, 237865367741, 333967711897, 467032496113, 575310702877, 601401837037, 962329192917, 1087566636885
Offset: 1

Views

Author

Felix Fröhlich, Sep 24 2014

Keywords

Comments

Numbers k such that 2^k == 2 (mod k) and k is divisible by 1093^2. - Jianing Song, Apr 07 2019
In contrast to A247831, all terms of this sequence are odd. - Max Alekseyev, Nov 26 2017
Unless there are other Wieferich primes (A001220) besides 1093 and 3511, the intersection and the union of this sequence with A247831 are given by A219346 and A158358, respectively. - Max Alekseyev, Nov 26 2017

Crossrefs

Subsequence of each of A001567, A015919, A158358 composed of the terms divisible by 1093^2.

Programs

  • PARI
    vi=readvec("b158358.txt")
    for(n=1, #vi, if(Mod(vi[n], 1093^2)==0, print1(vi[n], ", ")))