OFFSET
1,1
COMMENTS
Conjecture: Natural density is log 5/log 100. - Charles R Greathouse IV, Nov 15 2010
EXAMPLE
11 is a term because 5^11 = 48828125 has 8 digits and digit sum 4+8+8+2+8+1+2+5 = 38 while 5^10 = 9765625 has 7 digits and digit sum 9+7+6+5+6+2+5 = 40.
MATHEMATICA
Select[ Range@ 208, Floor[Log[10, 5^# ]] > Floor[Log[10, 5^(# - 1)]] && Plus @@ IntegerDigits[5^# ] < Plus @@ IntegerDigits[5^(# - 1)] &]
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Robert G. Wilson v, Oct 25 2006
STATUS
approved