OFFSET
1,2
COMMENTS
a(934) = 20831532 is probably the last term. Any further terms must be greater than 1.5 * 10^18. - Charles R Greathouse IV, Jun 27 2011
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..934
EXAMPLE
a(2)=123 because (123-3*sqrt(sqrt(123)), 123]=(123-9,9907.., 123]=(113,0092.., 123].
MATHEMATICA
Select[Range[2000], PrimePi[# - 3Sqrt[Sqrt[#]]] == PrimePi[#] &] (* Alonso del Arte, Jun 27 2011 *)
PROG
(PARI) isA192231(n)=nextprime(floor(n+1-3*n^.25))>n \\ Charles R Greathouse IV, Jun 27 2011
(PARI) is(n)=for(k=0, sqrtnint(81*n-1, 4), if(isprime(n-k), return(0))); 1 \\ Charles R Greathouse IV, Aug 26 2015
CROSSREFS
KEYWORD
nonn
AUTHOR
Juri-Stepan Gerasimov, Jun 26 2011
EXTENSIONS
a(2) added by Alonso del Arte, Jun 27 2011
STATUS
approved