cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A366683 Number of divisors of 11^n-1.

This page as a plain text file.
%I A366683 #7 Jan 04 2024 16:10:51
%S A366683 4,16,16,40,12,192,16,96,32,96,16,1920,16,128,96,448,8,1024,8,480,768,
%T A366683 1024,32,18432,128,512,64,2560,16,9216,32,2048,512,256,192,20480,64,
%U A366683 512,4096,4608,512,36864,16,10240,384,2048,32,1376256,128,4096,512,2560
%N A366683 Number of divisors of 11^n-1.
%H A366683 Max Alekseyev, <a href="/A366683/b366683.txt">Table of n, a(n) for n = 1..316</a>
%F A366683 a(n) = sigma0(11^n-1) = A000005(A024127(n)).
%e A366683 a(3)=16 because 11^3-1 has divisors {1, 2, 5, 7, 10, 14, 19, 35, 38, 70, 95, 133, 190, 266, 665, 1330}.
%p A366683 a:=n->numtheory[tau](11^n-1):
%p A366683 seq(a(n), n=1..100);
%t A366683 DivisorSigma[0, 11^Range[100]-1]
%o A366683 (PARI) a(n) = numdiv(11^n-1);
%Y A366683 Cf. A024127, A000005, A366681, A366682, A366684, A366685.
%Y A366683 Cf. A046801, A070528, A366709.
%K A366683 nonn
%O A366683 1,1
%A A366683 _Sean A. Irvine_, Oct 16 2023