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

A069536
Smallest multiple of 8 with digit sum n.
8
0, 1000, 200, 120, 40, 32, 24, 16, 8, 72, 64, 56, 48, 184, 176, 96, 88, 296, 288, 496, 488, 696, 688, 896, 888, 1888, 2888, 3888, 4888, 5888, 6888, 7888, 8888, 9888, 19888, 29888, 39888, 49888, 59888, 69888, 79888, 89888, 99888
OFFSET
0,2
COMMENTS
a(25) onwards the pattern is evident.
FORMULA
a(n) = 8 * A077495(n).
PROG
(Haskell)
a069536 n = a069536_list !! n
a069536_list = map (* 8) a077495_list
-- Reinhard Zumkeller, Dec 09 2011
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Amarnath Murthy, Apr 01 2002
EXTENSIONS
Missing a(0) inserted by Franklin T. Adams-Watters, Nov 29 2011
STATUS
approved