|
| |
|
|
A139750
|
|
Numbers n such that d_1^1 + ... + d_r^r is a prime number, where d_i are the digits of n (n = concatenation of d_1, d_2, ..., d_r).
|
|
4
|
|
|
|
2, 3, 5, 7, 11, 12, 14, 16, 20, 21, 23, 29, 30, 32, 34, 38, 41, 43, 45, 47, 50, 56, 61, 65, 70, 72, 74, 76, 78, 83, 89, 92, 98, 101, 110, 111, 113, 115, 120, 122, 131, 133, 137, 139, 140, 146, 153, 155, 160, 164, 182, 186, 188, 191, 193, 199, 200, 201, 203, 205, 210
(list;
graph;
refs;
listen;
history;
text;
internal format)
|
|
|
|
OFFSET
|
1,1
|
|
|
LINKS
|
Harvey P. Dale, Table of n, a(n) for n = 1..1000
|
|
|
MATHEMATICA
|
dpnQ[n_]:=Module[{idn=IntegerDigits[n]}, PrimeQ[Total[idn^Range[ Length[idn]]]]]; Select[Range[300], dpnQ] (* From Harvey P. Dale, Mar 26 2012 *)
|
|
|
CROSSREFS
|
Cf. A139752.
Sequence in context: A212127 A028835 A028834 * A139749 A178357 A205667
Adjacent sequences: A139747 A139748 A139749 * A139751 A139752 A139753
|
|
|
KEYWORD
|
base,easy,nonn,less
|
|
|
AUTHOR
|
Ctibor O. Zizka, May 19 2008
|
|
|
EXTENSIONS
|
Edited and extended by Klaus Brockhaus, May 21 2008
|
|
|
STATUS
|
approved
|
| |
|
|