login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A046801 Number of divisors of 2^n-1. 29
1, 2, 2, 4, 2, 6, 2, 8, 4, 8, 4, 24, 2, 8, 8, 16, 2, 32, 2, 48, 12, 16, 4, 96, 8, 8, 8, 64, 8, 96, 2, 32, 16, 8, 16, 512, 4, 8, 16, 192, 4, 144, 8, 128, 64, 16, 8, 768, 4, 128, 32, 128, 8, 160, 64, 256, 16, 64, 4, 4608, 2, 8, 96, 128, 8, 384, 4, 128, 16, 512, 8, 8192, 8, 32, 128 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
a(0) cannot be defined because 0's divisors are an infinite set (every number is a divisor of 0.)
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..1206 (terms 1..500 from T. D. Noe)
EXAMPLE
a(120) = 73728 since 2^120-1 has that many divisors.
MAPLE
a:= n-> numtheory[tau](2^n-1):
seq(a(n), n=1..80); # Alois P. Heinz, Aug 23 2021
MATHEMATICA
Table[DivisorSigma[0, 2^n - 1], {n, 120}] (* Michael De Vlieger, Mar 26 2015 *)
PROG
(PARI) a(n) = numdiv(2^n-1); \\ Michel Marcus, Dec 15 2013
(Magma) [DivisorSigma(0, 2^n - 1): n in [1..100]]; // Vincenzo Librandi, Mar 27 2015
(Python)
from sympy import divisor_count
def A046801(n): return divisor_count((1<<n)-1) # Chai Wah Wu, Mar 13 2023
CROSSREFS
Cf. A000043 (n such that a(n) = 2), A000225 (2^n-1).
Sequence in context: A107067 A331580 A320389 * A348717 A316437 A137502
KEYWORD
nonn
AUTHOR
EXTENSIONS
Typo in example fixed by Reinhard Zumkeller, May 15 2010
a(0) removed by J. Lowell, Mar 26 2015
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 18:05 EDT 2024. Contains 371798 sequences. (Running on oeis4.)