cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A003543 Divisors of 2^36 - 1.

This page as a plain text file.
%I A003543 #31 Jul 19 2024 03:15:00
%S A003543 1,3,5,7,9,13,15,19,21,27,35,37,39,45,57,63,65,73,91,95,105,109,111,
%T A003543 117,133,135,171,185,189,195,219,247,259,273,285,315,327,333,351,365,
%U A003543 399,455,481,511,513,545,555,585,657,665,703,741,763,777,819,855,945,949
%N A003543 Divisors of 2^36 - 1.
%C A003543 Number of divisors is 512.
%C A003543 2^36 - 1 is the largest unsigned integer in a 36-bit word.
%H A003543 T. D. Noe, <a href="/A003543/b003543.txt">Table of n, a(n) for n = 1..512</a> (all divisors)
%H A003543 Paul Barry, <a href="https://arxiv.org/abs/2107.14278">Series reversion with Jacobi and Thron continued fractions</a>, arXiv:2107.14278 [math.NT], 2021.
%H A003543 <a href="/index/Di#divisors">Index entries for sequences related to divisors of numbers</a>
%t A003543 Divisors[2^36-1] (* _Harvey P. Dale_, Jun 20 2015 *)
%o A003543 (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 */
%K A003543 nonn,fini,full,easy
%O A003543 1,2
%A A003543 _N. J. A. Sloane_