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.

A101395 Numbers k such that 4*10^k+7 is prime.

Original entry on oeis.org

0, 1, 3, 9, 39, 2323
Offset: 1

Views

Author

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

Keywords

Comments

No further terms < 50000.
a(7) > 2*10^5. - Robert Price May 16 2015

Examples

			n = 1, 3, 9 are members since 47, 4007 and 4000000007 are primes.
		

Crossrefs

Programs

  • Mathematica
    Do[ If[ PrimeQ[4*10^n + 7], Print[n]], {n, 0, 10000}]
  • PARI
    is(n)=ispseudoprime(4*10^n+7) \\ Charles R Greathouse IV, Jun 12 2017

Formula

a(n) = A101714(n-1) + 1.