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.

A073916 The n-th number with n divisors.

Original entry on oeis.org

1, 3, 25, 14, 14641, 44, 24137569, 70, 1089, 405, 819628286980801, 160, 22563490300366186081, 2752, 9801, 462, 21559177407076402401757871041, 1044, 740195513856780056217081017732809, 1520, 141376, 84992
Offset: 1

Views

Author

Amarnath Murthy, Aug 18 2002

Keywords

Comments

Last element in n-th row of A073915.
a(p) = prime(p)^(p-1) for any prime number p. - Paul Tek, Jun 23 2013

Examples

			For n = 4; the numbers with four divisors are 6, 8, 10, 14, 15, 21,... so a(4) = 14 because 14 is the 4th number with four divisors. - _Omar E. Pol_, Jun 01 2012
		

Crossrefs

Cf. A073915.

Programs

  • Mathematica
    d = Table[Length[Divisors[n]], {n, 200000}]; t = {}; n = 0; ok = True; While[ok, n++; If[PrimeQ[n], AppendTo[t, Prime[n]^(n - 1)], c = Flatten[Position[d, n, 1, n]]; If[Length[c] >= n, AppendTo[t, c[[n]]], ok = False]]]; t (* T. D. Noe, Jun 23 2013 *)

Extensions

More terms from Sascha Kurz, Jan 28 2003
New name from Omar E. Pol, Jun 01 2012
a(22)-a(34) from Paul Tek, Jun 23 2013