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

A053355
Numbers k such that 277*2^k + 1 is prime.
0
2, 6, 8, 18, 20, 22, 36, 62, 108, 120, 162, 180, 222, 450, 530, 706, 1028, 1200, 1296, 1362, 2280, 3788, 7130, 8082, 8150, 10226, 10302, 11578, 48426, 57890, 73890, 139346, 201378, 225322, 1134740, 1584740, 1634878, 1728302, 1880022, 2340182, 5185268
OFFSET
1,1
MATHEMATICA
Select[Range[5*10^3], PrimeQ[277*2^# + 1] &] (* G. C. Greubel, May 24 2018 *)
PROG
(PARI) is(n)=ispseudoprime(277*2^n+1) \\ Charles R Greathouse IV, Jun 13 2017
(Magma) [n: n in [1..300] | IsPrime(277*2^n+1)]; // G. C. Greubel, May 24 2018
CROSSREFS
Sequence in context: A183212 A360264 A325686 * A233572 A370864 A005823
KEYWORD
hard,nonn,more,changed
AUTHOR
N. J. A. Sloane, Dec 29 1999
EXTENSIONS
a(31)-a(39) from the Ray Ballinger and Wilfrid Keller link by Robert Price, Dec 20 2018
a(40) from Jeppe Stig Nielsen, Apr 04 2020
a(41) from Jeppe Stig Nielsen, Dec 21 2024
STATUS
approved