login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A366709
Number of divisors of 12^n-1.
15
2, 4, 4, 16, 4, 32, 8, 64, 16, 16, 12, 256, 8, 64, 64, 512, 8, 512, 4, 192, 32, 48, 16, 4096, 16, 192, 64, 1024, 32, 8192, 32, 2048, 192, 64, 512, 16384, 8, 64, 128, 12288, 16, 12288, 32, 3072, 4096, 256, 8, 262144, 32, 1024, 64, 6144, 128, 65536, 192, 8192
OFFSET
1,1
LINKS
FORMULA
a(n) = sigma0(12^n-1) = A000005(A024140(n)).
EXAMPLE
a(3)=4 because 12^3-1 has divisors {1, 11, 157, 1727}.
MAPLE
a:=n->numtheory[tau](12^n-1):
seq(a(n), n=1..100);
MATHEMATICA
DivisorSigma[0, 12^Range[100]-1]
PROG
(PARI) a(n) = numdiv(12^n-1);
KEYWORD
nonn
AUTHOR
Sean A. Irvine, Oct 17 2023
STATUS
approved