|
| |
|
|
A076704
|
|
Odd-digit prime powers of prime numbers.
|
|
2
| | |
|
|
|
OFFSET
| 1,1
|
|
|
COMMENTS
| Up to 10^17, there are only 9 odd-digit prime powers of prime numbers. a(1)=3^2, a(2)=71^3, a(3)=173^3, a(4)=179^3, a(5)=211^3, a(6)=25799^3, a(7)=69491^3, a(8)=199831^3 & a(9)=237151^3.
The only candidates for even-digit prime powers of prime numbers are 2^n and below 2^10000 there are only 2, 4, 8, 64 & 2048; two of which are not to prime powers.
|
|
|
MATHEMATICA
| pp = Sort[ Flatten[ Table[ Prime[n]^Prime[i], {n, 1, PrimePi[ Sqrt[10^17]]}, {i, 1, PrimePi[ Floor[ Log[ Prime[n], 10^17]]]}]]]; Do[ If[ Union[ OddQ[ IntegerDigits[ pp[[n]]]]] == {True}, Print[ pp[[n]]]], {n, 1, Length[pp]}]
|
|
|
CROSSREFS
| Cf. A053810, A075308.
Sequence in context: A159344 A120352 A058468 * A133414 A013850 A174001
Adjacent sequences: A076701 A076702 A076703 * A076705 A076706 A076707
|
|
|
KEYWORD
| nonn,base
|
|
|
AUTHOR
| Zak Seidov (zakseidov(AT)yahoo.com), Oct 26 2002
|
|
|
EXTENSIONS
| Edited and extended by Robert G. Wilson v (rgwv(AT)rgwv.com), Oct 31 2002
|
| |
|
|