A006035 Numbers n such that (19^n-1)/18 is prime.
19, 31, 47, 59, 61, 107, 337, 1061, 9511, 22051, 209359
Offset: 1
References
- Ribenboim, Paulo; "The Book Of Prime Number Records"; published 1989 by Springer-Verlag; pages 350-354.
- N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
Links
- Paul Bourdelais, A Generalized Repunit Conjecture. - _Paul Bourdelais_, Aug 27 2010
- H. Dubner, Generalized repunit primes, Math. Comp., 61 (1993), 927-930.
- H. Dubner, Generalized repunit primes, Math. Comp., 61 (1993), 927-930. [Annotated scanned copy]
- H. Lifchitz, Mersenne and Fermat primes field
- Index to primes in various ranges, form ((k+1)^n-1)/k
Programs
-
Mathematica
lst={};Do[If[PrimeQ[(19^n-1)/18], Print[n];AppendTo[lst, n]], {n, 10^5}];lst (* Vladimir Joseph Stephan Orlovsky, Aug 21 2008 *)
-
PARI
is(n)=isprime((19^n-1)/18) \\ Charles R Greathouse IV, Apr 28 2015
Extensions
One more term from Herman Jamke (hermanjamke(AT)fastmail.fm), Jan 05 2008
a(11)=209359 corresponds to a probable prime discovered by Paul Bourdelais, Aug 27 2010
Comments