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.

A176030 a(n) = n^(sigma_2(n)).

Original entry on oeis.org

1, 32, 59049, 4398046511104, 1490116119384765625, 808281277464764060643139600456536293376, 1798465042647412146620280340569649349251249
Offset: 1

Views

Author

Michel Lagneau, Apr 06 2010

Keywords

Comments

sigma_2 = A001157 is the sum of squares of divisors of n.

Examples

			a(1) = 1^1 = 1.
a(2) = 2^(1+4) = 32.
a(3) = 3^(1+9) = 59049.
		

Crossrefs

Programs

  • Mathematica
    Table[n^DivisorSigma[2,n], {n, 20}]

Formula

a(n) = n^A001157(n).