OFFSET
1,2
LINKS
Michael S. Branicky, Table of n, a(n) for n = 1..6504
EXAMPLE
91 belongs since 8918 is a multiple of 91 (91*98 = 8918).
MATHEMATICA
f[k_, d_] := Flatten@Table[Select[Divisors[k*(10^(i + 1) + 1)], IntegerLength[ # ] == i &], {i, d}]; f[8, 8] f[k_, d_] := Flatten@Table[Select[Divisors[k*(10^(i + 1) + 1)], IntegerLength[ # ] == i &], {i, d}]; f[9, 8] (* Ray Chandler, May 11 2007 *)
Select[Range[301*10^5], Divisible[FromDigits[Join[{8}, IntegerDigits[#], {8}]], #]&] (* Harvey P. Dale, Aug 27 2019 *)
PROG
(Python)
from sympy import isprime
from itertools import count, islice
def agen(): # generator of terms
yield from [1, 2, 4, 8]
for k in count(2):
t = 8*(10**(k+1) + 1)
yield from (t//i for i in range(800, 80, -1) if t%i == 0)
print(list(islice(agen(), 41))) # Michael S. Branicky, Mar 26 2023
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Giovanni Resta, Feb 15 2006
EXTENSIONS
a(39) and beyond from Michael S. Branicky, Mar 26 2023
STATUS
approved