|
| |
|
|
A067075
|
|
a(n) = smallest number m such that the sum of the digits of m^3 is equal to n^3.
|
|
3
|
| |
|
|
|
OFFSET
|
1,2
|
|
|
LINKS
|
Table of n, a(n) for n=1..6.
|
|
|
EXAMPLE
|
a(3) = 27 as 27^3 = 19683 is the smallest cube whose digit sum = 27 = 3^3.
|
|
|
MATHEMATICA
|
Do[k = 1; While[Plus @@ IntegerDigits[k^3] != n^3, k++ ]; Print[k], {n, 1, 6}] (Propper)
|
|
|
CROSSREFS
|
Cf. A067074.
Sequence in context: A078102 A221534 A221535 * A015217 A113094 A076113
Adjacent sequences: A067072 A067073 A067074 * A067076 A067077 A067078
|
|
|
KEYWORD
|
base,more,nonn
|
|
|
AUTHOR
|
Amarnath Murthy (amarnath_murthy(AT)yahoo.com), Jan 05 2002
|
|
|
EXTENSIONS
|
Corrected and extended by Ryan Propper (rpropper(AT)stanford.edu), Jul 07 2005
|
|
|
STATUS
|
approved
|
| |
|
|