OFFSET
1,1
COMMENTS
Complement of A098952.
Asymptotic density 1. [Charles R Greathouse IV, Nov 13 2010]
LINKS
Michael S. Branicky, Table of n, a(n) for n = 1..10000
EXAMPLE
100 has three digits and is not divisible by 3, therefore 100 is in the sequence.
MATHEMATICA
Select[Range[150], !Divisible[#, IntegerLength[#]]&] (* Harvey P. Dale, Apr 24 2011 *)
PROG
(Magma) [n: n in [1..140] | not IsIntegral(n/#Intseq(n))]; // Bruno Berselli, Feb 09 2016
(Python)
def ok(n): return n%len(str(n))
print([k for k in range(142) if ok(k)]) # Michael S. Branicky, Feb 07 2022
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Jaroslav Krizek, Dec 10 2009
STATUS
approved