A366657 Sum of the divisors of 8^n+1.
3, 13, 84, 800, 4356, 51792, 351120, 3100240, 17041416, 211053040, 1494039792, 12611914848, 73234343952, 794382536272, 5936210280000, 60037292774400, 282937726148616, 3264911394064320, 24128875076496960, 208532141890460960, 1225825603154905104
Offset: 0
Keywords
Examples
a(4)=4356 because 8^4+1 has divisors {1, 17, 241, 4097}.
Links
- Max Alekseyev, Table of n, a(n) for n = 0..502
Crossrefs
Programs
-
Maple
a:=n->numtheory[sigma](8^n+1): seq(a(n), n=0..100);
-
Mathematica
DivisorSigma[1, 8^Range[0,20]+1] (* Paul F. Marrero Romero, Nov 19 2023 *)
Formula
a(n) = A069061(3*n). - Max Alekseyev, Jan 09 2024