OFFSET
1,2
COMMENTS
The number of terms below 10^n is A216053(n)-1 for 1 <= n <= 25, but not for larger n. - Rémy Sigrist, May 28 2019
The product of repunits is not necessarily palindromic, see A339676. - Bernard Schott, Apr 02 2021
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
EXAMPLE
a(11) = 13431 is in the sequence since it is the product of repunits (11^2*111).
MAPLE
d:= 10: # for terms < 10^d
N:= 10^d:
S:= {1}:
for m from 2 to d do
r:= (10^m-1)/9;
k:= floor(log[r](N));
V:= S;
for i from 1 to k do
V:= select(`<`, map(`*`, V, r), N);
S:= S union V
od;
od:
sort(convert(S, list)); # Robert Israel, Nov 26 2020
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Sergio Pimentel, May 22 2019
EXTENSIONS
Missing a(25) = 1356531 inserted by Ilya Gutkovskiy, Apr 14 2020
STATUS
approved