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”).

A092596
Natural numbers n for which sum of decimal digits is greater than n/2.
4
1, 2, 3, 4, 5, 6, 7, 8, 9, 19
OFFSET
1,2
EXAMPLE
Largest term is 19, 1+9>19/2=9.5
MATHEMATICA
Select[Range@ 10^3, Total@ IntegerDigits@ # > #/2 &] (* Michael De Vlieger, Jul 23 2017 *)
CROSSREFS
KEYWORD
base,nonn,fini,full
AUTHOR
Labos Elemer, Mar 18 2004
STATUS
approved