OFFSET
1,1
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
FORMULA
a(n) ~ 8n. - Charles R Greathouse IV, Feb 12 2017
MATHEMATICA
Select[8*Range[150], DigitCount[#, 10, 8]>0&] (* Harvey P. Dale, Oct 20 2014 *)
PROG
(PARI) isok(n) = !(n % 8) && vecsearch(vecsort(digits(n)), 8); \\ Michel Marcus, Nov 28 2016
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
Reinhard Zumkeller, Jul 21 2006
EXTENSIONS
Corrected by T. D. Noe, Oct 25 2006
Typo in comment fixed by Reinhard Zumkeller, May 01 2011
STATUS
approved