login
A236530
Numbers n such that (48^n + 1)/49 is prime.
1
5, 17, 131, 84589
OFFSET
1,1
COMMENTS
All terms are primes.
a(5) > 10^5.
LINKS
J. Brillhart et al., Factorizations of b^n +- 1, Contemporary Mathematics, Vol. 22, Amer. Math. Soc., Providence, RI, 3rd edition, 2002.
H. Dubner and T. Granlund, Primes of the Form (b^n+1)/(b+1), J. Integer Sequences, 3 (2000), #P00.2.7.
Eric Weisstein's World of Mathematics, Repunit.
MATHEMATICA
Do[ p=Prime[n]; If[ PrimeQ[ (48^p + 1)/49 ], Print[p] ], {n, 1, 9592} ]
PROG
(PARI) is(n)=ispseudoprime((48^n+1)/49) \\ Charles R Greathouse IV, Jun 13 2017
KEYWORD
hard,more,nonn
AUTHOR
Robert Price, Jan 27 2014
EXTENSIONS
Incorrect first term deleted by Robert Price, Feb 21 2014
STATUS
approved