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.

A348170 Numbers k such that (35^k - 1)/34 is prime.

Original entry on oeis.org

313, 1297, 568453
Offset: 1

Views

Author

Paul Bourdelais, Oct 04 2021

Keywords

Comments

These are the repunit primes in base 35.

Examples

			313 is a term since (35^313 - 1)/34 is a prime. It has 482 digits in base 10.
		

Crossrefs

Programs

  • Mathematica
    Do[ If[ PrimeQ[ (35^n-1)/34], Print[n]], {n, 0, 600000}]
  • PARI
    is(n)=isprime((35^n-1)/34)