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.

A177507 Primes of the form 4*10^n+3.

Original entry on oeis.org

7, 43, 4003, 40000003, 40000000003, 40000000000000000000000000000000000000003
Offset: 1

Views

Author

Vincenzo Librandi, Dec 11 2010

Keywords

Comments

a(9) has 1738 digits. - Vincenzo Librandi, Jan 03 2014

Crossrefs

Cf. A101397.

Programs

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