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.

A093405 Primes of the form 80*R_k + 9, where R_k is the repunit (A002275) of length k.

Original entry on oeis.org

89, 88888888888889, 88888888888888889, 88888888888888888888888888888888889
Offset: 1

Views

Author

Rick L. Shepherd, Mar 28 2004

Keywords

Comments

Primes of the form (8*10^k + 1)/9. - Vincenzo Librandi, Jul 17 2012

Crossrefs

Cf. A056663 (corresponding k).

Programs

  • Mathematica
    Select[Table[(8*10^n+1)/9,{n,1,200}],PrimeQ] (* Vincenzo Librandi, Jul 17 2012 *)
    Select[Table[FromDigits[PadLeft[{9},n,8]],{n,100}],PrimeQ] (* Harvey P. Dale, Dec 15 2023 *)