OFFSET
1,2
COMMENTS
Question: for any n>0 is there at least one prime p such that n^n<=p<=n^n+n^2? In this case, that would be stronger than the Schinzel conjecture : "for m >1 there's at least one prime p such that m<=p<=m+ln(m)^2" since n^2<ln(n^n)^2=n^2*ln(n)^2.
PROG
(PARI) for(n=1, 65, print1(sum(i=n^n, n^n+n^2, isprime(i)), ", "))
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Benoit Cloitre, May 05 2002
EXTENSIONS
a(66)-a(76) from Alex Ratushnyak, Apr 20 2014
STATUS
proposed