login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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 (list; graph; refs; listen; history; text; internal format)
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

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 10:47 EDT 2024. Contains 371967 sequences. (Running on oeis4.)