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.

A263429 Smallest prime p such that binomial(2*p-1, p-1) == 1 (mod p^n), or 0 if no such p exists.

Original entry on oeis.org

2, 3, 5, 16843
Offset: 1

Views

Author

Felix Fröhlich, Oct 18 2015

Keywords

Comments

For n > 1, smallest p = prime(i) such that A244919(i) = n.
For n > 3, p is a term of A088164.
Conjecture: a(n) = 0 for n > 4 (McIntosh, 1995, p. 387).

Crossrefs

Programs

  • PARI
    a(n) = my(p=2); while(Mod(binomial(2*p-1, p-1), p^n)!=1, p=nextprime(p+1)); p