OFFSET
1,2
COMMENTS
Question: is the intersection of this sequence and A019505 infinite?
EXAMPLE
36*3=108 has 12 divisors; smallest number with 12 divisors is 60.
MATHEMATICA
With[{s = DivisorSigma[0, Range[10^7]]}, Nest[Append[#, First@ FirstPosition[s, DivisorSigma[0, 3 Last@ #]]] &, {1}, 18]] (* Michael De Vlieger, Mar 21 2019 *)
PROG
(PARI) least(x) = {my(k=1, nd = numdiv(x)); while (numdiv(k) != nd, k++); k; }
lista(nn) = {my(a = 1); print1(a, ", "); for (n=2, nn, a = least(3*a); print1(a, ", "); ); } \\ Michel Marcus, Mar 20 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
J. Lowell, Mar 19 2019
EXTENSIONS
a(17)-a(21) from Michel Marcus, Mar 20 2019
a(22)-a(32) from Giovanni Resta, Mar 22 2019
STATUS
approved