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.

Showing 1-1 of 1 results.

A141264 Number of divisors of m^2 where m is the smallest number with exactly n divisors.

Original entry on oeis.org

1, 3, 5, 9, 9, 15, 13, 21, 25, 27, 21, 45, 25, 39, 45, 63, 33, 75, 37, 81, 65, 63, 45, 105, 81, 75, 125, 117, 57, 135, 61, 189, 105, 99, 117, 225, 73, 111, 125, 243, 81, 195, 85, 189, 225, 135, 93, 315, 169, 243, 165, 225, 105, 375, 189, 351, 185, 171, 117, 405, 121, 183
Offset: 1

Views

Author

J. Lowell, Aug 30 2008

Keywords

Comments

Variant of A103578.

Examples

			a(8) = 21 because the smallest number with 8 divisors is 24, 24^2 = 576 and 576 has 21 divisors.
		

Crossrefs

Programs

  • Mathematica
    a[n_]:=Module[{m=0},Until[DivisorSigma[0,m]==n,m++];DivisorSigma[0,m^2]];Array[a,25] (* James C. McMahon, Jul 26 2025 *)

Formula

a(n) = A000005(A005179(n)^2). - R. J. Mathar, Aug 31 2008

Extensions

Extended beyond a(8) by R. J. Mathar, Sep 01 2008
Showing 1-1 of 1 results.