OFFSET
1,1
COMMENTS
Also numbers m such that A000041(m) has six times as many even divisors as odd divisors.
LINKS
Colin Barker, Table of n, a(n) for n = 1..150
MATHEMATICA
Select[Range[5100], IntegerExponent[PartitionsP[#], 2] == 6 &] (* Amiram Eldar, May 25 2024 *)
PROG
(PARI) isok(n) = valuation(numbpart(n), 2)==6;
select(n->isok(n), vector(6000, n, n))
CROSSREFS
KEYWORD
nonn
AUTHOR
Colin Barker, Nov 28 2016
STATUS
approved