A366603 Sum of the divisors of 4^n-1.
4, 24, 104, 432, 1536, 8736, 22528, 111456, 473600, 1999872, 5909760, 38054016, 89522176, 462274560, 2015330304, 7304603328, 22907191296, 166290432000, 366506672128, 2220409884672, 7645340651520, 29833839544320, 95821839806976, 648494317126656
Offset: 1
Keywords
Examples
a(4)=432 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 (terms 1..1062 from Robert Israel)
Crossrefs
Programs
-
Maple
a:=n->numtheory[sigma](4^n-1): seq(a(n), n=1..100);
-
Mathematica
DivisorSigma[1,4^Range[30]-1] (* Paolo Xausa, Oct 14 2023 *)