OFFSET
1,2
COMMENTS
Numbers k such that the number of divisors of k is equal to the number of divisors of the number of partitions of k.
LINKS
Charles R Greathouse IV and Amiram Eldar, Table of n, a(n) for n = 1..500 (terms 1..225 from Charles R Greathouse IV)
MATHEMATICA
Select[Range[1500], DivisorSigma[0, #] == DivisorSigma[0, PartitionsP[#]] &] (* Indranil Ghosh, Mar 09 2017 *)
PROG
(PARI) select(n->numdiv(n)==numdiv(numbpart(n)), vector(750, n, n))
CROSSREFS
KEYWORD
nonn
AUTHOR
Colin Barker, Jan 25 2017
STATUS
approved