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”).
%I #15 Sep 25 2020 04:23:49
%S 0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,1,0,0,
%T 0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,
%U 0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,1,0
%N Number of positive integers k with 1 < k < n such that n^k + k^n is prime.
%C a(n) > 0 iff n is a term of A162488.
%C a(n) > 1 iff n is a term of A300478.
%H Robert Israel, <a href="/A300477/b300477.txt">Table of n, a(n) for n = 2..1940</a>
%p f:= n -> nops(select(isprime, [seq(n^k-k^n,k=2..n-1)])):
%p map(f, [$2..100]); # _Robert Israel_, Sep 24 2020
%o (PARI) a(n) = my(i=0); for(k=2, n-1, if(ispseudoprime(n^k+k^n), i++)); i
%Y Cf. A162488, A300478.
%K nonn
%O 2
%A _Felix Fröhlich_, Mar 06 2018