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.

A093675 Primes of the form 7*10^k + 3*R_k, where R_k is the repunit (A002275) of length k.

Original entry on oeis.org

7, 73, 733, 7333, 733333, 733333333333333333333333333333333333333333333333333333, 733333333333333333333333333333333333333333333333333333333
Offset: 1

Views

Author

Rick L. Shepherd, Apr 08 2004

Keywords

Comments

The next term (a(8)) has 344 digits. - Harvey P. Dale, Nov 11 2014

Crossrefs

Cf. A002275, A056720 (corresponding k).

Programs

  • Magma
    [a: n in [0..200] | IsPrime(a) where a is (22*10^n-1) div 3 ]; // Vincenzo Librandi, May 08 2019
  • Mathematica
    Select[Table[FromDigits[PadRight[{7},n,3]],{n,500}],PrimeQ] (* Harvey P. Dale, Nov 11 2014 *)