OFFSET
1,2
COMMENTS
a(n) is the number of n-digit numbers in A346950.
FORMULA
a(n) < A052268(n).
Conjecture: Lim_{n->infinity} a(n)/a(n-1) = 10.
MATHEMATICA
Table[{lo, hi}={10^(n-1), 10^n}; Length@Select[Union@Flatten@Table[a*b, {a, 3, Floor[hi/3], 10}, {b, a, Floor[hi/a], 10}], lo<#<hi&], {n, 7}] (* Giorgos Kalogeropoulos, Aug 16 2021 *)
PROG
(Python)
def a(n):
lo, hi = 10**(n-1), 10**n
return len(set(a*b for a in range(3, hi//3+1, 10) for b in range(a, hi//a+1, 10) if lo <= a*b < hi))
print([a(n) for n in range(1, 9)]) # Michael S. Branicky, Aug 09 2021
CROSSREFS
KEYWORD
nonn,base,hard,more
AUTHOR
Stefano Spezia, Aug 08 2021
EXTENSIONS
a(6)-a(11) from Michael S. Branicky, Aug 09 2021
a(12)-a(14) from Martin Ehrenstein, Aug 22 2021
STATUS
approved