OFFSET
1,1
FORMULA
a(n)=min(k>0, k has the same number of divisors as A131903(n))
EXAMPLE
a(4)=6 because A131903(4)=8, which has four divisors, and 6 is the least positive integer with four divisors
MATHEMATICA
Clear[tmp]; Function[n, If[Head[ #1] === tmp, #1 = n; Unevaluated[Sequence[]], # ] & [tmp[DivisorSigma[0, n]]]] /@ Range[64]
PROG
(PARI) lista(nn) = {for (n=1, nn, my(nd = numdiv(n)); for (k=1, n-1, if (numdiv(k) == nd, print1(k, ", "); break); ); ); } \\ Michel Marcus, Apr 03 2015
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Peter Pein (petsie(AT)dordos.net), Jul 26 2007
EXTENSIONS
More terms from Michel Marcus, Apr 03 2015
STATUS
approved