|
| |
|
|
A068916
|
|
Smallest positive integer that is equal to the sum of the n-th powers of its prime factors (counted with multiplicity).
|
|
1
| | |
|
|
|
OFFSET
| 1,1
|
|
|
COMMENTS
| Does a(n) exist for all n?
a(12)=65536, a(27)=4394967296. a(n) exists for all n of the form n=p^i-i, where p is prime and i >= 0, since p^p^i is an example (see A067688 and A081177). - Jud McCranie (JudMcCranie(AT)ugaalum.uga.edu), Mar 16 2003
|
|
|
EXAMPLE
| a(3) = 1096744 = 2^3*11^3*103; the sum of the cubes of the prime factors is 3*2^3 + 3*11^3 + 103^3 = 1096744.
|
|
|
MATHEMATICA
| a[n_] := For[x=1, True, x++, If[x==Plus@@(#[[2]]#[[1]]^n&/@FactorInteger[x]), Return[x]]]
|
|
|
CROSSREFS
| Cf. A067688.
Cf. A081177, A000325, A024024, A024050.
Sequence in context: A061301 A180962 A092798 * A093987 A114560 A108883
Adjacent sequences: A068913 A068914 A068915 * A068917 A068918 A068919
|
|
|
KEYWORD
| nonn
|
|
|
AUTHOR
| Dean Hickerson (dean.hickerson(AT)yahoo.com), Mar 07 2002
|
| |
|
|