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”).

A032353
Numbers k such that 7*2^k 1 is prime.
6
2, 4, 6, 14, 20, 26, 50, 52, 92, 120, 174, 180, 190, 290, 320, 390, 432, 616, 830, 1804, 2256, 6614, 13496, 15494, 16696, 22386, 54486, 88066, 95330, 207084, 283034, 561816, 804534, 811230, 1491852, 2139912, 2167800, 2915954, 3015762, 3511774, 5775996
OFFSET
1,1
MATHEMATICA
Select[Range[10^3], PrimeQ[7*2^# 1] &] (* Michael De Vlieger, Feb 25 2017 *)
PROG
(PARI) is(n)=ispseudoprime(7*2^n 1) \\ Charles R Greathouse IV, Feb 20 2017
(Magma) [n: n in [1..830] | IsPrime(7*2^n 1)]; // Arkadiusz Wesolowski, Feb 24 2017
CROSSREFS
Sequence in context: A277909 A064409 A225078 * A378773 A062112 A226302
KEYWORD
nonn,hard
EXTENSIONS
Added more terms (from http://web.archive.org/web/20161028080239/http://www.prothsearch.net/riesel.html), Joerg Arndt, Apr 07 2013
a(41) from Jeppe Stig Nielsen, Jul 25 2019
STATUS
approved