login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Earliest sequence of 17 consecutive primes such that sum of digits of each one is also a prime.
0

%I #9 Sep 01 2013 07:34:14

%S 793234063,793234067,793234111,793234139,793234153,793234171,

%T 793234177,793234193,793234207,793234243,793234261,793234289,

%U 793234333,793234357,793234391,793234427,793234441

%N Earliest sequence of 17 consecutive primes such that sum of digits of each one is also a prime.

%t Select[Partition[Prime[Range[40900000]],17,1],And@@PrimeQ[Total/@ IntegerDigits[ #]]&] (* _Harvey P. Dale_, Apr 11 2013 *)

%Y Cf. A046704.

%K nonn,base,fini,full

%O 1,1

%A _Carlos Rivera_