|
Search: id:A098797
|
|
|
| A098797 |
|
Numbers n (with no zero digits) with property that n raised to the product of its digits plus the sum of its digits is prime. |
|
+0 1
|
|
| 1, 11, 17, 34, 187, 232, 1132, 3112, 3173, 6127, 11413, 12112, 12331, 13213, 14311
(list; graph; listen)
|
|
|
OFFSET
|
1,2
|
|
|
EXAMPLE
|
a(4)=34: 34^(3*4)+(3+4) = 2386420683693101063, which is prime.
|
|
MATHEMATICA
|
14731, 22231, 23221
f[n_] := Block[{d = Sort[IntegerDigits[n]]}, d[[1]] != 0 && PrimeQ[n^(Times @@ d) + Plus @@ d]]; Do[ If[ f[n], Print[n]], {n, 36625}] (from Robert G. Wilson v Oct 23 2004)
|
|
CROSSREFS
|
Sequence in context: A165667 A086711 A039514 this_sequence A098649 A078872 A163387
Adjacent sequences: A098794 A098795 A098796 this_sequence A098798 A098799 A098800
|
|
KEYWORD
|
nonn,base
|
|
AUTHOR
|
Ray G. Opao (1260(AT)email.com), Oct 05 2004
|
|
EXTENSIONS
|
8 more terms from Robert G. Wilson v (rgwv(AT)rgwv.com), Oct 30 2004
|
|
|
Search completed in 0.002 seconds
|