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

A309412
Numbers k such that (45^k + 1)/46 is prime.
0
103, 157, 37159
OFFSET
1,1
COMMENTS
Larger terms correspond to probable primes.
MATHEMATICA
Do[p=Prime[n]; If[PrimeQ[(45^p + 1)/46], Print[p]], {n, 1, 1000000}]
PROG
(PARI) is(n)=ispseudoprime((45^n+1)/46)
CROSSREFS
Sequence in context: A106983 A328822 A141962 * A115267 A107217 A142942
KEYWORD
nonn,bref,hard,more
AUTHOR
Paul Bourdelais, Jul 29 2019
STATUS
approved