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

A273403
Numbers k such that (10^k - 7^k)/3 is prime.
0
2, 31, 103, 617, 10253, 10691, 35353, 129587, 556441
OFFSET
1,1
COMMENTS
All terms are prime.
The corresponding primes: 17, 3333280741539321718064461652419, ...
LINKS
Jon Grantham and Andrew Granville, Fibonacci primes, primes of the form 2^n-k and beyond, arXiv:2307.07894 [math.NT], 2023.
MATHEMATICA
Select[Range[1, 10000], PrimeQ[(10^# - 7^#)/3] &]
PROG
(PARI) for(n=1, 10000, if(isprime((10^n - 7^n)/3), print1(n, ", ")))
CROSSREFS
KEYWORD
nonn,more,hard
AUTHOR
EXTENSIONS
a(7)-a(9) from Jon Grantham, Jul 29 2023
STATUS
approved