login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A061104
Smallest number whose sum of digits is n^2.
4
0, 1, 4, 9, 79, 799, 9999, 499999, 19999999, 999999999, 199999999999, 49999999999999, 9999999999999999, 7999999999999999999, 7999999999999999999999, 9999999999999999999999999
OFFSET
0,3
LINKS
FORMULA
a(n) = A051885(n^2).
a(n) = ((n^2 mod 9) + 1)*10^floor(n^2/9) - 1. - Henry Bottomley, Apr 24 2001
EXAMPLE
a(5) = 799, 7 + 9 + 9 = 25 = 5^2.
PROG
(PARI) a(n) = { (n^2%9 + 1)*10^(n^2\9) - 1 } \\ Harry J. Smith, Jul 18 2009
CROSSREFS
Sequence in context: A041030 A361067 A359654 * A082381 A155931 A309801
KEYWORD
nonn,base
AUTHOR
Amarnath Murthy, Apr 20 2001
STATUS
approved