OFFSET
1,1
EXAMPLE
a(1)=1291 is a term because sum of digits of five consecutive primes i.e. (1291, 1297, 1301, 1303, 1307), whose sum of digits (i.e. 13, 19, 5, 7, 11)is a set of five distinct primes.
MATHEMATICA
pr5Q[list_]:=Module[{idnlist=Total[IntegerDigits[#]]&/@ list}, Length[Union[idnlist]]==5&&And@@PrimeQ/@idnlist]
Transpose[Select[Partition[Prime[Range[50000]], 5, 1], pr5Q]][[1]] (* Harvey P. Dale, Feb 14 2011 *)
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Shyam Sunder Gupta, May 18 2005
STATUS
approved