|
| |
|
|
A072897
|
|
Least n-th order digital invariant which is not an Armstrong number (A005188).
|
|
0
| | |
|
|
|
OFFSET
| 3,1
|
|
|
COMMENTS
| An n-th order digital invariant is a number such that the sum of the n-th power of the integer digits of n equals some number k and the sum of the n-th power of the integer digits of k equals n. An Armstrong number is where n = k.
|
|
|
REFERENCES
| David Wells, The Penguin Dictionary of Curious and Interesting Numbers, Revised Edition, London, England, 1997, pgs. 124&155.
|
|
|
LINKS
| Eric Weisstein's World of Mathematics, Link to a section of The World of Mathematics.
|
|
|
MATHEMATICA
| Do[k = 1; While[ !(Apply[Plus, IntegerDigits[Apply[Plus, IntegerDigits[k]^n]]^n] == k && Apply[Plus, IntegerDigits[k]^n] != k), k++ ]; Print[k], {n, 3, 7}]
|
|
|
CROSSREFS
| Cf. A072409 and A005188.
Sequence in context: A183901 A023070 A015163 * A071231 A194014 A035819
Adjacent sequences: A072894 A072895 A072896 * A072898 A072899 A072900
|
|
|
KEYWORD
| hard,nonn,base
|
|
|
AUTHOR
| Robert G. Wilson v (rgwv(AT)rgwv.com), Aug 09 2002
|
| |
|
|