A366637 Number of divisors of 7^n+1.
2, 4, 6, 8, 4, 16, 24, 16, 8, 16, 32, 16, 32, 16, 12, 64, 8, 8, 48, 16, 16, 128, 48, 8, 16, 32, 24, 32, 64, 8, 512, 32, 16, 128, 48, 1024, 256, 16, 12, 256, 64, 64, 96, 512, 32, 2048, 96, 8, 64, 2048, 640, 128, 32, 64, 384, 3072, 256, 256, 96, 64, 512, 8, 48
Offset: 0
Keywords
Examples
a(4)=4 because 7^4+1 has divisors {1, 2, 1201, 2402}.
Links
- Max Alekseyev, Table of n, a(n) for n = 0..387
Crossrefs
Programs
-
Maple
a:=n->numtheory[tau](7^n+1): seq(a(n), n=0..100);
-
Mathematica
DivisorSigma[0, 7^Range[0, 62] + 1] (* Paul F. Marrero Romero, Oct 16 2023 *)
-
PARI
a(n) = numdiv(7^n+1);