OFFSET
1,1
COMMENTS
Alternatively, primes of the form m*x+1 where x>0 is an integer, m is a prime and m>x. - Frank M Jackson, Nov 27 2015
{a(n)-1, n>=0} is a subsequence of A064052.
EXAMPLE
67 is a term as 67 is prime and 67-1 = 66 = 2*3*11 has prime factor 11 > sqrt(66) = 8.1240....
MATHEMATICA
Reap[For[p = 3, p < Prime[120], p = NextPrime[p], f = FactorInteger[p-1][[-1, 1]]; If[f > Sqrt[p], Sow[p]]]][[2, 1]] (* Jean-François Alcover, Jan 12 2015 *)
PROG
(PARI) forprime(p=3, prime(100), f=factor(p-1); sz=matsize(f)[1]; if(f[sz, 1]>sqrt(p-1), print1(p, ", ")))
CROSSREFS
KEYWORD
nonn
AUTHOR
Rick L. Shepherd, Aug 14 2005
STATUS
approved