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.

A176987 Primes of the form 10^n-27.

Original entry on oeis.org

73, 9973, 9999973, 99999999999973, 99999999999999999973, 9999999999999999999973, 99999999999999999999999999973, 9999999999999999999999999999973, 9999999999999999999999999999999999999973
Offset: 1

Views

Author

Vincenzo Librandi, Dec 11 2010

Keywords

Crossrefs

Cf. A108329.

Programs

  • Magma
    [a: n in [2..250]|IsPrime(a) where a is 10^n-27];
  • Mathematica
    Select[Table[10^n - 27, {n, 2, 500}], PrimeQ] (* Vincenzo Librandi, Jan 03 2014 *)
    Select[Table[FromDigits[PadLeft[{7,3},n,9]],{n,2,40}],PrimeQ] (* Harvey P. Dale, Jul 08 2024 *)