|
| |
|
|
A110028
|
|
Primes with a prime number of digits, all of them prime, that add up to a prime.
|
|
1
|
|
|
|
23, 223, 227, 337, 353, 373, 557, 577, 733, 757, 773, 22573, 23327, 25237, 25253, 25523, 27253, 27527, 32233, 32237, 32257, 32323, 32327, 33223, 33353, 33377, 33533, 33773, 35227, 35353, 35533, 35537, 35573, 35753, 37223, 37337, 52237
(list;
graph;
refs;
listen;
history;
text;
internal format)
|
|
|
|
OFFSET
|
1,1
|
|
|
COMMENTS
|
First 7 digit number in this sequence is 2222333
|
|
|
LINKS
|
Table of n, a(n) for n=1..37.
|
|
|
EXAMPLE
|
E.g. "a(12)=22573 because 22573 is prime, it has five digits (5 is a prime), all digits (2,3,5,7) are prime and also the sum of the digits is 2+2+5+7+3=19 which is also a prime"
|
|
|
MAPLE
|
a:=proc(n) local nn: nn:=convert(n, base, 10): if isprime(n)=true and isprime(nops(nn))=true and map(isprime, nn)=[seq(true, i=1..nops(nn))] and isprime(add(nn[j], j=1..nops(nn)))=true then n else fi end: seq(a(k), k=1..60000); - Emeric Deutsch, Apr 02 2006
|
|
|
CROSSREFS
|
Cf. A000040, A062088.
Sequence in context: A027481 A201211 A194783 * A117608 A038514 A125386
Adjacent sequences: A110025 A110026 A110027 * A110029 A110030 A110031
|
|
|
KEYWORD
|
nonn,base
|
|
|
AUTHOR
|
Sergio Pimentel, Mar 31 2006
|
|
|
STATUS
|
approved
|
| |
|
|