A270011 Numbers n such that 3*14^n-1 is prime.
1, 2, 3, 5, 15, 31, 53, 100, 108, 188, 328, 568, 816, 1013, 1912, 4008, 4155, 8686, 10747
Offset: 0
Links
- J. Brillhart, D. H. Lehmer and J. L. Selfridge, New primality criteria and factorizations of 2^m+-1, Math. Compl. 29 (1975) 620-647.
- John Eisenmann, Prime Numbers of the Form a * 14^b - 1.
- Victor Shoup, A Computational Introduction to Number Theory and Algebra, 2008, page 348.
- Eric Weisstein's World of Mathematics, Lucas Sequence.
- Eric Weisstein's World of Mathematics, Rabin-Miller Strong Pseudoprime Test.
Programs
-
PARI
is(n)=ispseudoprime(3*14^n-1) \\ Charles R Greathouse IV, Jun 13 2017