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.

A267488 Smallest b > 1 such that there exists an odd prime p with p < b such that b^(p-1) == 1 (mod p^n).

Original entry on oeis.org

4, 7, 18, 80, 242, 728, 2186, 6560, 19682, 59048, 177146, 531440, 1594322
Offset: 1

Views

Author

Felix Fröhlich, Jan 15 2016

Keywords

Comments

Conjecture: For n > 3, a(n) = A024023(n).

Crossrefs

Cf. A024023.

Programs

  • PARI
    a(n) = my(b=2); while(1, forprime(p=3, b-1, if(Mod(b, p^n)^(p-1)==1, return(b))); b++)

Formula

a(n) ~ 3^n (via the A024023 conjecture). - Bill McEachen, Jul 31 2025

Extensions

a(11) from Michael S. Branicky, May 19 2022
a(12) from Michael S. Branicky, May 21 2022
a(13) from Bill McEachen, Jul 31 2025