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.

A159352 Primes of the form "1 [0]_n 3" - with zeros between 1 and 3.

Original entry on oeis.org

13, 103, 100003, 1000003, 100000000003, 100000000000000003, 1000000000000000003, 1000000000000000000000000000000000000003, 100000000000000000000000000000000000000000000000000000003
Offset: 1

Views

Author

Parthasarathy Nambi, Apr 11 2009

Keywords

Examples

			1000000000000000000000000000000000000003 is a prime with 38 zeros between 1 and 3.
		

Crossrefs

Cf. A159031.
Cf. A049054 (numbers n such that 10^n + 3 is prime), A102006 (numbers n such that 10*10^n + 3 is prime), A011557 (powers of 10).

Programs

  • Magma
    [p: n in [1..100] | IsPrime(p) where p is 10^n+3 ]; // Klaus Brockhaus, Apr 12 2009
  • Maple
    select(isprime, [seq(10^k+3, k=1..998)]); # Robert Israel, Dec 28 2015