login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

A053354
Numbers k such that 275*2^k + 1 is prime.
0
7, 15, 21, 25, 27, 69, 71, 105, 207, 285, 611, 635, 647, 969, 1127, 1159, 2407, 2529, 3517, 3577, 6275, 6729, 7919, 8809, 9375, 27369, 31657, 44149, 58579, 59355, 274255, 285435, 350949, 485505, 821221, 834297, 3585539
OFFSET
1,1
MATHEMATICA
Select[Range[5*10^3], PrimeQ[275*2^# + 1] &] (* G. C. Greubel, May 24 2018 *)
PROG
(PARI) is(n)=ispseudoprime(275*2^n+1) \\ Charles R Greathouse IV, Jun 13 2017
(Magma) [n: n in [1..300] | IsPrime(275*2^n+1)]; // G. C. Greubel, May 24 2018
CROSSREFS
Sequence in context: A151971 A014659 A179676 * A346197 A274700 A022552
KEYWORD
hard,nonn,more
AUTHOR
N. J. A. Sloane, Dec 29 1999
EXTENSIONS
a(31)-a(36) from the Ray Ballinger and Wilfrid Keller link by Robert Price, Dec 20 2018
a(37) from Jeppe Stig Nielsen, Dec 21 2024
STATUS
approved