OFFSET
1,1
COMMENTS
Numbers that do not divide a number obtained by concatenating a single digit any number of times.
Numbers divisible by either 10 or 16 or 25. - Karl-Heinz Hofmann, Nov 02 2023
The asymptotic density of this sequence is 17/100. - Amiram Eldar, May 21 2026
LINKS
Karl-Heinz Hofmann, Table of n, a(n) for n = 1..10000
Amarnath Murthy, On the Divisors of Smarandache Unary Sequence, Smarandache Notions Journal, Vol. 11, No. 1-2-3 (Spring 2000), pp. 184-185.
Index entries for linear recurrences with constant coefficients, signature (2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -1).
MATHEMATICA
Union @@ Range[#, 500, #] & [{10, 16, 25}] (* Paolo Xausa, May 19 2026 *)
PROG
(Python)
print([n for n in range(2, 1000) if not n % 10 or not n % 16 or not n % 25])
# Karl-Heinz Hofmann, Nov 02 2023
CROSSREFS
KEYWORD
base,easy,nonn
AUTHOR
Amarnath Murthy and Meenakshi Srikanth (menakan_s(AT)yahoo.com), Apr 23 2003
EXTENSIONS
Data section corrected and more terms from Karl-Heinz Hofmann, Nov 02 2023
STATUS
approved
