OFFSET
1,1
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
EXAMPLE
a(1)=2089 is a term because this is Largest of six consecutive primes i.e. 2063,2069,2081,2083,2087 and 2089, whose sum of digits is prime i.e. 2+0+6+3=11, 2+0+6+9=17, 2+0+8+1=11, 2+0+8+3=13, 2+0+8+7=17 and 2+0+8+9=19.
MATHEMATICA
idprQ[n_]:=PrimeQ[Total[IntegerDigits[n]]]; Transpose[Select[ Partition[ Prime[ Range[ 10000]], 6, 1], And@@idprQ/@#&]][[6]] (* Harvey P. Dale, Dec 05 2014 *)
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Shyam Sunder Gupta, May 14 2005
EXTENSIONS
Definition clarified by Harvey P. Dale, Dec 05 2014
STATUS
approved