OFFSET
1,1
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..250
EXAMPLE
a(1)=102301 is a term because sum of digits of six consecutive primes i.e., (102251, 102253, 102259, 102293, 102299, 102301), whose sum of digits (i.e., 11, 13, 19, 17, 23, 7) is a set of six distinct primes.
MATHEMATICA
sdpQ[lst_]:=Module[{sod=Total[IntegerDigits[#]]&/@lst}, Length[Union[sod]] == 6 && AllTrue[sod, PrimeQ]]; Transpose[Select[Partition[Prime[Range[ 1250000]], 6, 1], sdpQ]][[6]] (* The program uses the AllTrue function from Mathematica version 10 *) (* Harvey P. Dale, Aug 11 2014 *)
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Shyam Sunder Gupta, May 18 2005
STATUS
approved