A366602 Number of divisors of 4^n-1.
2, 4, 6, 8, 8, 24, 8, 16, 32, 48, 16, 96, 8, 64, 96, 32, 8, 512, 8, 192, 144, 128, 16, 768, 128, 128, 160, 256, 64, 4608, 8, 128, 384, 128, 512, 8192, 32, 128, 192, 768, 32, 9216, 32, 1024, 4096, 512, 64, 6144, 32, 8192, 1536, 1024, 64, 10240, 3072, 2048, 384
Offset: 1
Keywords
Examples
a(4)=8 because 4^4-1 has divisors {1, 3, 5, 15, 17, 51, 85, 255}.
Links
- Max Alekseyev, Table of n, a(n) for n = 1..1128
Crossrefs
Programs
-
Maple
a:=n->numtheory[tau](4^n-1): seq(a(n), n=1..100);
-
Mathematica
DivisorSigma[0,4^Range[100]-1] (* Paolo Xausa, Oct 14 2023 *)
-
PARI
a(n) = numdiv(4^n-1);