OFFSET
1,3
COMMENTS
Numbers which can be written as a*b*c*... where a, b, c are numbers whose decimal expansions are repetitions of a single digit.
Superset of A051038. The first numbers in this sequence but not in A051038 are 111, 222, 333, 444, 555. - R. J. Mathar, Sep 17 2008
From David A. Corneth, Aug 03 2017: (Start)
Closed under multiplication.
Multiples of 1-digit primes and numbers of the form (10^n - 1) / 9. (End)
LINKS
David A. Corneth, Table of n, a(n) for n = 1..12917 (Terms <= 10^8)
EXAMPLE
99 is a member since 99 = 3*33.
9768 is a member since 9768= 2*22*222.
111*2*33*44 = 322344 is a member.
MAPLE
isA010786 := proc(n) if nops(convert(convert(n, base, 10), set)) = 1 then true; else false ; fi; end: isA084034 := proc(n, a010785) local d ; if n = 1 then RETURN(true) ; fi; for d in ( numtheory[divisors](n) minus{1} ) do if d in a010785 then if isA084034(n/d, a010785) then RETURN(true) ; fi; fi; od: RETURN(false) ; end: nmax := 1000: a010785 := [] : for k from 1 to nmax do if isA010786(k) then a010785 := [op(a010785), k] ; fi; od: for n from 1 to nmax do if isA084034(n, a010785) then printf("%d, ", n) ; fi; end: # R. J. Mathar, Sep 17 2008
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Amarnath Murthy, May 26 2003
EXTENSIONS
Corrected and extended by David Wasserman, Dec 09 2004
Corrected data, offset changed to 1 by David A. Corneth, Aug 03 2017
Edited by N. J. A. Sloane, Jul 02 2017 and Oct 10 2018
STATUS
approved