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”).

A158328
Lessers p1 of twin primes with prime sums of digits of p1 and p2.
1
3, 5, 41, 137, 191, 197, 227, 281, 311, 461, 599, 641, 821, 827, 881, 1031, 1091, 1277, 1301, 1451, 1721, 1871, 2027, 2081, 2087, 2111, 2267, 2591, 2711, 2801, 3167, 3251, 3257, 3299, 3527, 3581, 3671, 3851, 4001, 4157, 4241, 4337, 4421, 4481, 4517, 4799
OFFSET
1,1
COMMENTS
Or, numbers n such that n and n+2 are terms in A046704. [Zak Seidov, Feb 02 2010]
LINKS
EXAMPLE
a(3)=41 is in the sequence because 41, 41+2=43, 4+1=5 and 4+3=7 are primes.
a(4)=137 is in the sequence because 137, 137+2=139, 1+3+7=11 and 1+3+9=13 are primes.
MAPLE
sd:= n -> convert(convert(n, base, 10), `+`):
p:= 1: q:= 2: count:= 0: Res:= NULL:
while count < 100 do
if q = p+2 and isprime(sd(p)) and isprime(sd(q)) then
count:= count+1; Res:= Res, p
fi;
p:= q; q:= nextprime(q);
od:
Res; # Robert Israel, Apr 08 2018
MATHEMATICA
sd[n_]:=Plus@@IntegerDigits[n]; Select[Prime[Range[650]], And@@PrimeQ[{#+2, sd[#], sd[#+2]}] &] (* Jayanta Basu, May 25 2013 *)
CROSSREFS
Sequence in context: A145912 A096058 A120265 * A258933 A060433 A216085
KEYWORD
nonn,base
AUTHOR
EXTENSIONS
Corrected by Juri-Stepan Gerasimov, Mar 24 2009
3299 and 4481 inserted by R. J. Mathar, Mar 27 2009
Example edited by Robert Israel, Apr 08 2018
STATUS
approved