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”).
%I #12 Oct 30 2017 04:32:02
%S 7,11,19,2207,2477,4951
%N Numbers n such that (24^n+1)/25 is a prime.
%C a(7) > 10^5. - _Robert Price_, Jun 04 2013
%H H. Dubner and T. Granlund, <a href="https://cs.uwaterloo.ca/journals/JIS/VOL3/DUBNER/dubner.html">Primes of the Form (b^n+1)/(b+1)</a>, J. Integer Sequences, 3 (2000), #P00.2.7.
%H H. Lifchitz, <a href="http://www.primenumbers.net/Henri/us/MersFermus.htm">Mersenne and Fermat primes field</a>
%o (PARI) isok(n) = (denominator(p=(24^n+1)/25)==1) && isprime(p); \\ _Michel Marcus_, Oct 30 2017
%K nonn,more
%O 1,1
%A _N. J. A. Sloane_, Sep 15 2000