login
A243586
Primes p such that sum of digits + 3 is prime.
6
2, 11, 13, 17, 19, 31, 37, 53, 59, 71, 73, 79, 97, 101, 103, 107, 109, 127, 149, 163, 167, 181, 211, 233, 239, 251, 257, 271, 277, 293, 307, 347, 349, 367, 383, 389, 419, 431, 433, 439, 457, 479, 491, 503, 509, 521, 523, 541, 547, 563, 569, 587, 613, 617
OFFSET
1,1
COMMENTS
Naturally, this sequence is not the same as A119449. First disagreement at index 44: a(44)=503, A119449(44)=499.
LINKS
MATHEMATICA
Select[Prime[Range[200]], PrimeQ[Plus@@IntegerDigits[#] + 3]&]
PROG
(Magma) [p: p in PrimesUpTo(700) | IsPrime(q) where q is 3+&+Intseq(p)];
CROSSREFS
Cf. primes p such that sum of digits + k is prime: A166561 (k=1), this sequence (k=3), A176985 (k=5), A243587 (k=7), A243588 (k=9).
Sequence in context: A038915 A166849 A119449 * A296923 A243588 A137977
KEYWORD
nonn,base
AUTHOR
Vincenzo Librandi, Jun 07 2014
STATUS
approved