[go: up one dir, main page]

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

A092597
Natural numbers n for which sum of decimal digits is not smaller than n/3.
1
1, 2, 3, 4, 5, 6, 7, 8, 9, 14, 15, 16, 17, 18, 19, 28, 29
OFFSET
1,2
EXAMPLE
Largest term is 29, 2+9>29/3=9.66
MATHEMATICA
Select[Range[100], Total[IntegerDigits[#]]>=#/3&] (* Harvey P. Dale, Mar 10 2013 *)
CROSSREFS
KEYWORD
base,nonn,fini,full
AUTHOR
Labos Elemer, Mar 18 2004
STATUS
approved