login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A003543
Divisors of 2^36 - 1.
5
1, 3, 5, 7, 9, 13, 15, 19, 21, 27, 35, 37, 39, 45, 57, 63, 65, 73, 91, 95, 105, 109, 111, 117, 133, 135, 171, 185, 189, 195, 219, 247, 259, 273, 285, 315, 327, 333, 351, 365, 399, 455, 481, 511, 513, 545, 555, 585, 657, 665, 703, 741, 763, 777, 819, 855, 945, 949
OFFSET
1,2
COMMENTS
Number of divisors is 512.
2^36 - 1 is the largest unsigned integer in a 36-bit word.
MATHEMATICA
Divisors[2^36-1] (* Harvey P. Dale, Jun 20 2015 *)
PROG
(PARI) {a(n)=local(x, d, N); if(n<1||n>512, 0, N=2^36-1; d=1; while(n>0, if(N%d==0, n--; x=d); d++); x)} /* Michael Somos, Feb 17 2006 */
CROSSREFS
Sequence in context: A270807 A157048 A190857 * A114513 A191186 A174572
KEYWORD
nonn,fini,full,easy
STATUS
approved