login
A060711
Smallest number whose sum of digits is n^4.
1
1, 79, 999999999, 49999999999999999999999999999, 4999999999999999999999999999999999999999999999999999999999999999999999, 999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999
OFFSET
1,2
LINKS
FORMULA
a(n) = A051885(n^4).
a(n) >= 10^(n^4/9) - 1.
MATHEMATICA
Do[ a = {}; While[ Apply[ Plus, a ] + 9 < n^4, a = Append[ a, 9 ] ]; If[ Apply[ Plus, a ] != n^4, a = Prepend[ a, n^4 - Apply[ Plus, a ] ] ]; Print[ FromDigits[ a ] ], {n, 1, 6} ]
PROG
(PARI) a(n)={ my(s=n^4, x=s\9, d=s-9*x); (d+1)*10^x - 1 } \\ Harry J. Smith, Jul 10 2009
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Robert G. Wilson v, Apr 21 2001
STATUS
approved