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.

A073806 Number of divisors of sum of square of divisors.

Original entry on oeis.org

1, 2, 4, 4, 4, 6, 6, 4, 4, 8, 4, 16, 8, 8, 12, 4, 8, 8, 4, 16, 12, 8, 8, 12, 8, 12, 12, 24, 4, 18, 8, 16, 12, 12, 18, 12, 8, 8, 18, 16, 6, 15, 12, 16, 12, 12, 16, 16, 8, 16, 18, 32, 8, 18, 12, 16, 12, 8, 4, 48, 4, 16, 24, 4, 24, 18, 8, 32, 18, 24, 4, 16, 16, 12, 32, 16, 18, 24, 4, 16, 6
Offset: 1

Views

Author

Labos Elemer, Aug 13 2002

Keywords

Examples

			n = 10: D = {1,2,5,10}, sigma(2,10) = 1 + 4 + 25 + 100 = 130, D(130) = {1,2,5,10,13,26,65,130}, so a(10) = 8.
		

Crossrefs

Programs

  • Mathematica
    a[n_] := DivisorSigma[0, DivisorSigma[2, n]]; Array[a, 81] (* Amiram Eldar, Aug 01 2019 *)

Formula

a(n) = A000005(A001157(n)) = d(sigma(2, n)).