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!)
A281021 Primes k with (say) j digits that produce two other primes, x and y, from the sums x = Sum_{i=1..j} (k mod 10^i) and y = Sum_{i=0..j-1} (floor(k/10^i)). 1
2, 3, 5, 7, 137, 191, 379, 421, 683, 757, 919, 1001933, 1005553, 1006091, 1012463, 1012513, 1013431, 1013813, 1013921, 1013923, 1016027, 1016401, 1016681, 1019657, 1022729, 1022837, 1025537, 1028011, 1028569, 1030069, 1030889, 1030933, 1034069, 1038119, 1040057 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
k = 137 and x = 7 + 37 + 137 = 181, y = 137 + 13 + 1 = 151, both primes.
MAPLE
with(numtheory): P:= proc(q) local a, b, c, k, m, n; for m from 1 to q do n:=ithprime(m);
a:=n; b:=0; for k from 1 to ilog10(n)+1 do b:=b+(a mod 10^k); od; a:=n; c:=0;
for k from 0 to ilog10(n) do c:=c+trunc(a/10^k); od;
if isprime(b) and isprime(c) then print(n); fi; od; end: P(10^9);
CROSSREFS
Cf. A000040.
Sequence in context: A046705 A054218 A075048 * A230046 A098463 A064155
KEYWORD
nonn,easy
AUTHOR
Paolo P. Lava, Jan 13 2017
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 July 20 13:32 EDT 2024. Contains 374445 sequences. (Running on oeis4.)