OFFSET
1,1
EXAMPLE
a(3)=199 is a term because sum of digits of four consecutive primes i.e. (191, 193, 197, 199), whose sum of digits (i.e. 11, 13, 17, 19)is a set of four distinct primes.
MATHEMATICA
fdpQ[{a_, b_, c_, d_}]:=Module[{e, f, g, h}, {e, f, g, h}=Total[ IntegerDigits[#]]&/@ {a, b, c, d}; Length[Union[{e, f, g, h}]]==4&&And@@PrimeQ[{e, f, g, h}]]; Transpose[ Select[ Partition[ Prime[ Range[2800]], 4, 1], fdpQ]][[4]] (* Harvey P. Dale, Aug 23 2012 *)
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Shyam Sunder Gupta, May 18 2005
STATUS
approved