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.

A162664 a(n) = sigma(n) + tau(n)^2.

Original entry on oeis.org

2, 7, 8, 16, 10, 28, 12, 31, 22, 34, 16, 64, 18, 40, 40, 56, 22, 75, 24, 78, 48, 52, 28, 124, 40, 58, 56, 92, 34, 136, 36, 99, 64, 70, 64, 172, 42, 76, 72, 154, 46, 160, 48, 120, 114, 88, 52, 224, 66, 129, 88, 134, 58, 184, 88, 184, 96, 106, 64, 312, 66, 112, 140, 176, 100
Offset: 1

Views

Author

Keywords

Comments

Row 2 of A162663.

Crossrefs

Programs

  • Mathematica
    Table[DivisorSigma[1, n] + DivisorSigma[0, n]^2, {n, 65}] (* Robert A. Russell, Apr 28 2018 *)
  • PARI
    a(n) = sigma(n) + numdiv(n)^2; \\ Michel Marcus, Apr 28 2018