OFFSET
2,1
COMMENTS
Number of digits in n^k is equal to floor(1 + k*log_10(n)).
LINKS
V. Raman, Table of n, a(n) for n = 2..10000
MATHEMATICA
Table[k = 1; While[d = IntegerDigits[n^k]; ! MemberQ[Differences[d], 0], k++]; Length[d], {n, 2, 100}] (* T. D. Noe, Oct 03 2012 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
V. Raman, Sep 27 2012
STATUS
approved