OFFSET
1,1
COMMENTS
Also the sequence of smallest primes such that the sum of the last two digits of three consecutive primes is a prime.
EXAMPLE
a(16)=97 since 97 (mod 100)+101 (mod 100)+103 (mod 100)=97+1+3=101 is a prime.
PROG
(PARI) isA180952(n) = isprime(n) && isprime(n%100+(n=nextprime(n+1))%100 + nextprime(n+1)%100)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Carmine Suriano, Sep 27 2010
EXTENSIONS
Program corrected by Charles R Greathouse IV, Feb 03 2011
STATUS
approved