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.

A366662 Sum of the divisors of 9^n-1.

Original entry on oeis.org

15, 186, 1680, 15876, 123690, 1541568, 8992680, 111757968, 967814400, 9366647892, 62424587520, 852903426816, 4766016364260, 55176998178240, 550081165885440, 4829754617483040, 31725040326819840, 471309320999516160, 2535353780263288800, 33995669076586206864
Offset: 1

Views

Author

Sean A. Irvine, Oct 15 2023

Keywords

Examples

			a(2)=186 because 9^2-1 has divisors {1, 2, 4, 5, 8, 10, 16, 20, 40, 80}.
		

Crossrefs

Programs

  • Maple
    a:=n->numtheory[sigma](9^n-1):
    seq(a(n), n=1..30);
  • Mathematica
    DivisorSigma[1, 9^Range[30]-1]

Formula

a(n) = sigma(9^n-1) = A000203(A024101(n)).
a(n) = A366576(2*n) = A366576(n) * A366578(n) * (2^(4 + A007814(n)) - 1) / (2^(3 + A007814(n)) - 1) / 3. - Max Alekseyev, Jan 07 2024