A028491 Numbers k such that (3^k - 1)/2 is prime.
3, 7, 13, 71, 103, 541, 1091, 1367, 1627, 4177, 9011, 9551, 36913, 43063, 49681, 57917, 483611, 877843, 2215303, 2704981, 3598867, 7973131, 8530117
Offset: 1
References
- J. Brillhart et al., Factorizations of b^n +- 1. Contemporary Mathematics, Vol. 22, Amer. Math. Soc., Providence, RI, 2nd edition, 1985; and later supplements.
- Paulo Ribenboim, The Little Book of Bigger Primes, Springer-Verlag NY 2004. See p. 236.
- N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
Links
- Antal Bege and Kinga Fogarasi, Generalized perfect numbers, arXiv:1008.0155 [math.NT], 2010. See p. 81.
- Paul Bourdelais, A Generalized Repunit Conjecture, Posting in NMBRTHRY@LISTSERV.NODAK.EDU, Jun 25, 2009.
- J. Brillhart et al., Factorizations of b^n +- 1, Contemporary Mathematics, Vol. 22, Amer. Math. Soc., Providence, RI, 3rd edition, 2002.
- 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
- Christian Salas, Cantor Primes as Prime-Valued Cyclotomic Polynomials, arXiv:1203.3969 [math.NT], 2012.
- S. S. Wagstaff, Jr., The Cunningham Project
- Eric Weisstein's World of Mathematics, Repunit
- Index to primes in various ranges, form ((k+1)^n-1)/k
Programs
-
Mathematica
Do[If[PrimeQ[(3^n-1)/2], Print[n]], {n, 10000}] (* Farideh Firoozbakht, Feb 09 2005 *)
-
PARI
forprime(p=2,1e5,if(ispseudoprime(3^p\2),print1(p", "))) \\ Charles R Greathouse IV, Jul 15 2011
Extensions
a(13) from Farideh Firoozbakht, Mar 27 2005
a(14)-a(16) from Robert G. Wilson v, Apr 11 2005
All larger terms only correspond to probable primes.
a(17) from Paul Bourdelais, Feb 08 2010
a(18) from Paul Bourdelais, Jul 06 2010
a(19) from Paul Bourdelais, Feb 05 2019
a(20) and a(21) from Ryan Propper, Dec 29 2021
a(22) from Ryan Propper, Nov 06 2023
a(23) from Ryan Propper, Nov 09 2023
Comments