This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A328660 #21 Jul 12 2024 01:13:31 %S A328660 3,5,11,19,1259,1399,2539,2843,5857,10589 %N A328660 Numbers k such that (10^k + 7^k)/17 is prime. %C A328660 All terms are odd primes. Proof: a(n) cannot be even, because (10^(2*k) + 7^(2*k))/17 is not an integer. If odd number k = x*y, then (10^x + 7^x) and (10^y + 7^y) are nontrivial factors of (10^(x*y) + 7^(x*y)). In conclusion, a(n) must be odd and prime. - _Daniel Suteu_, Jan 22 2020 %C A328660 The corresponding primes are 79, 6871, 5998666279, 588905817363845479, ... %C A328660 a(11) > 60000. - _Michael S. Branicky_, Jul 11 2024 %t A328660 Select[Table[Prime[n], {n, 500}], PrimeQ[(10^#+7^#)/17] &] (* Modified by _Jinyuan Wang_, Jan 22 2020 *) %o A328660 (PARI) forprime(k=3, 10000, if(isprime((10^k+7^k)/17), print1(k, ", "))) %o A328660 (Magma) [p: p in PrimesUpTo(1000) | IsPrime((10^p+7^p) div 17)]; // Modified by _Jinyuan Wang_, Jan 22 2020 %Y A328660 Cf. A001562, A128069, A217095. %K A328660 nonn,more,hard %O A328660 1,1 %A A328660 _Tim Johannes Ohrtmann_, Oct 24 2019