OFFSET
1,1
COMMENTS
Conjecture 1: all terms are palindromic in base 10.
Conjecture 2: the sequence A074992 is the maximally dense sequence with this palindromic products property.
EXAMPLE
a(3) = 37*9 = 333, with respect to strictly increasing ordering.
MATHEMATICA
f[n_] := f[n] = (10^(2 n) + 10^n + 1)/3; c[n_] := 10^n - 1; mx = 10^10; i=1; Union@ Reap[ While[c[i] <= mx, j=0; While[c[i] f[j] <= mx, k=0; While[k <= j && (v = c[i] f[j] f[k]) <= mx, Sow@v; k++]; j++]; i++]][[2, 1]] (* Giovanni Resta, Apr 01 2017 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Ahmad J. Masad, Apr 01 2017
EXTENSIONS
a(13)-a(31) from Giovanni Resta, Apr 01 2017
STATUS
approved