OFFSET
1,2
COMMENTS
If a(n) and a(m) are in the sequence, so is a(n)*a(m).
EXAMPLE
a(11) = 15 = 3*5 = (2^1 + 1)*(2^2 + 1).
MATHEMATICA
up = 192; t = Complement[1+2^Range[0, Ceiling@Log2@up], {9}]; a = {}; ric[p_, w_] := Block[{q = p}, If[w == {}, AppendTo[a, p], While[q <= up, ric[q, Rest@w]; q *= w[[1]]]]]; ric[1, t]; Union[a] (* Giovanni Resta, Jun 14 2018 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Nicholas Stearns, Jun 10 2018
EXTENSIONS
More terms from Giovanni Resta, Jun 14 2018
STATUS
approved