login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A193177
Numbers k such that 2*17^k - 1 is prime.
1
2, 30, 74, 122, 386, 476, 630, 20132
OFFSET
1,1
COMMENTS
Is it true that a(n)= 0 or 2 (mod 6) and a(n)= 0 or 2 (mod 4)?
Yes. This can be proved mod 21. [Charles R Greathouse IV, Jul 31 2011]
MATHEMATICA
Table[If[PrimeQ[2*17^m-1], m], {m, 1, 2000}]//Union
PROG
(PARI) forstep(n=2, 1e4, [4, 2], if(ispseudoprime(2*17^n-1), print1(n", "))) \\ Charles R Greathouse IV, Jul 31 2011
CROSSREFS
Sequence in context: A244379 A189100 A085637 * A157870 A285991 A078838
KEYWORD
nonn,more
AUTHOR
EXTENSIONS
a(8) from Michael S. Branicky, Jul 14 2023
STATUS
approved