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.

A105107 Numbers n such that 10000n + 1001 is prime.

Original entry on oeis.org

2, 5, 6, 8, 12, 18, 23, 36, 38, 41, 48, 50, 51, 54, 57, 68, 69, 71, 74, 75, 80, 86, 87, 89, 92, 95, 101, 102, 116, 120, 123, 129, 131, 137, 144, 146, 149, 155, 159, 183, 186, 204, 215, 216, 219, 225, 227, 228, 239, 246, 249, 251, 254, 257, 261, 269, 278, 282
Offset: 1

Views

Author

Parthasarathy Nambi, Apr 07 2005

Keywords

Examples

			n=2: 21001 is prime.
n=69: 691001 is prime.
		

Programs

  • Magma
    [ n: n in [1..300] | IsPrime(Seqint([1, 0, 0, 1] cat Intseq(n))) ];
    
  • PARI
    is(n)=isprime(10000*n+1001) \\ Charles R Greathouse IV, Jun 06 2017

Formula

a(n) ~ 0.4n log n.