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.

A177506 Primes of the form 4*10^n+1.

Original entry on oeis.org

5, 41, 401, 4001, 40000000000001
Offset: 1

Views

Author

Vincenzo Librandi, Dec 11 2010

Keywords

Crossrefs

Cf. A056806.

Programs

  • Magma
    [a: n in [0..250] | IsPrime(a) where a is 4*10^n+1];
  • Mathematica
    Select[Table[4 10^n + 1, {n, 0, 500}], PrimeQ] (* Vincenzo Librandi Jan 02 2014 *)