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.

A350036 Numbers k such that (81^k + 1)/82 is prime.

Original entry on oeis.org

3, 5, 701, 829, 1031, 1033, 7229, 19463, 370421
Offset: 1

Views

Author

Paul Bourdelais, Dec 09 2021

Keywords

Comments

These are the Repunits in base -81. Since 81=3^4, factors will be of the form p=8nk+1. (Negative) bases that are powers of small numbers appear to have a higher frequency of primes than Repunits in other bases. The best linear fit for this base is currently 0.29918 which is much lower (better) than the conjectured 0.56145948 (see link to conjecture).

Examples

			3 is a term since (81^3 + 1)/82 = 6481 is a prime.
		

Crossrefs

Programs

  • Mathematica
    Do[ If[ PrimeQ[ (81^n+1)/82], Print[n]], {n, 0, 1000000}]
  • PARI
    is(n)=isprime((81^n+1)/82)