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

A309533
Numbers k such that (144^k + 1)/145 is prime.
3
23, 41, 317, 3371, 45259, 119671
OFFSET
1,1
COMMENTS
The corresponding primes are terms of A059055. - Bernard Schott, Aug 09 2019
MATHEMATICA
Do[p=Prime[n]; If[PrimeQ[(144^p + 1)/145], Print[p]], {n, 1, 1000000}]
PROG
(PARI) is(n)=ispseudoprime((144^n+1)/145)
KEYWORD
nonn,more
AUTHOR
Paul Bourdelais, Aug 06 2019
STATUS
approved