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.

A177504 Primes of the form 5*10^n-9.

Original entry on oeis.org

41, 491, 49991, 49999991, 4999999999999999999999991
Offset: 1

Views

Author

Vincenzo Librandi, Dec 11 2010

Keywords

Crossrefs

Programs

  • Magma
    [a: n in [0..250] | IsPrime(a) where a is 5*10^n-9];
  • Mathematica
    Select[Table[5 10^n - 9, {n, 250}], PrimeQ] (* Vincenzo Librandi, Jan 03 2014 *)