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.

A366715 Sum of the divisors of 12^n+1.

Original entry on oeis.org

3, 14, 180, 2240, 21060, 267988, 3706920, 38773952, 459970056, 6692483840, 79425033660, 800162860756, 9101898907920, 117326869641600, 1596198064568400, 20655000929239040, 184885459808838660, 2390210102271311936, 33504016991491136160, 344201347103878781440
Offset: 0

Views

Author

Sean A. Irvine, Oct 17 2023

Keywords

Examples

			a(4)=21060 because 12^4+1 has divisors {1, 89, 233, 20737}.
		

Crossrefs

Programs

  • Maple
    a:=n->numtheory[sigma](12^n+1):
    seq(a(n), n=0..100);

Formula

a(n) = sigma(12^n+1) = A000203(A178248(n)).