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

A242797
Numbers n such that (45^n - 1)/44 is prime.
5
19, 53, 167, 3319, 11257, 34351, 216551
OFFSET
1,1
COMMENTS
a(7) > 10^5.
Numbers corresponding to a(4)-a(6) are probable primes.
All terms are prime.
LINKS
Harvey Dubner, Generalized repunit primes, Math. Comp., 61 (1993), 927-930.
MAPLE
A242797:=n->`if`(isprime((45^n - 1)/44), n, NULL); seq(A242797(n), n=1..100000); # Wesley Ivan Hurt, Apr 12 2014
MATHEMATICA
Select[Prime[Range[100000]], PrimeQ[(45^# - 1)/44] &]
PROG
(PARI) is(n)=ispseudoprime((45^n-1)/44) \\ Charles R Greathouse IV, Feb 20 2017
KEYWORD
hard,more,nonn
AUTHOR
Robert Price, May 22 2014
EXTENSIONS
a(7)=216551 corresponds to a probable prime discovered by Paul Bourdelais, Aug 04 2020
STATUS
approved