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.

A366617 Sum of the divisors of 5^n+1.

Original entry on oeis.org

3, 12, 42, 312, 942, 6264, 25284, 162000, 620460, 4961280, 16161768, 103442688, 367381884, 2441936064, 9859525284, 76963663296, 228970112844, 1526377433328, 6339280635408, 38199227335200, 144103649734968, 1285221510144000, 3894650946433800, 24349131482713344
Offset: 0

Views

Author

Sean A. Irvine, Oct 14 2023

Keywords

Examples

			a(3)=312 because 5^3+1 has divisors {1, 2, 3, 6, 7, 9, 14, 18, 21, 42, 63, 126}.
		

Crossrefs

Programs

  • Maple
    a:=n->numtheory[sigma](5^n+1):
    seq(a(n), n=0..100);
  • Mathematica
    DivisorSigma[1, 5^Range[0, 30] + 1] (* Paolo Xausa, Jul 03 2024 *)

Formula

a(n) = sigma(5^n+1) = A000203(A034474(n)).