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.

A101398 Numbers k such that 4*10^k-3 is prime.

Original entry on oeis.org

1, 2, 14, 20, 30, 44, 66, 260, 872, 8846, 26744, 57506, 98472, 106892
Offset: 1

Views

Author

Julien Peter Benney (jpbenney(AT)ftml.net), Jan 15 2005

Keywords

Comments

See Kamada link for search limit and prime vs. PRP status.
a(14) > 10^5. - Robert Price, Mar 17 2015
a(15) > 2*10^5. - Robert Price, Oct 02 2015

Examples

			k = 1, 2, 14, 20 are members since 37, 397, 399999999999997 and 399999999999999999997
are prime numbers.
		

Crossrefs

Programs

  • Mathematica
    Do[ If[ PrimeQ[4*10^n - 3], Print[n]], {n, 0, 10000}]
  • PARI
    for(n=1, 1e4, if(isprime(4*10^n-3), print1(n", "))) \\ Altug Alkan, Oct 02 2015

Formula

a(n) = A101849(n) + 1.

Extensions

a(11)-a(12) from Kamada data by Robert Price, Dec 13 2010
a(13) from Kamada data by Robert Price, Mar 17 2015
a(14) from Robert Price, Oct 02 2015