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.

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

Original entry on oeis.org

3, 13, 113, 11113, 111111113, 11111111113, 111111111111111111111113, 111111111111111111111111111111111111111111111111111111111111111111111111111111111113
Offset: 1

Views

Author

Rick L. Shepherd, Mar 14 2004

Keywords

Comments

Primes of the form 2 + (10^k - 1)/9, k > 0. - Vincenzo Librandi, Dec 13 2011

Crossrefs

Cf. A056654 (corresponding k).

Programs

  • Magma
    [a: n in [1..100] | IsPrime(a) where a is ((10^n-1) div 9)+2 ]; // Vincenzo Librandi, Dec 13 2011
  • Mathematica
    Select[Table[(((10^n-1)/ 9)+2),{n,1,900}],PrimeQ] (* Vincenzo Librandi, Dec 13 2011 *)