OFFSET
1,2
COMMENTS
This is also the n-th divisor of n^(n-1); any divisor with a factor of p^n is preceded by n smaller powers of p in the divisor list. [Franklin T. Adams-Watters, Sep 21 2009]
LINKS
Charlie Neder, Table of n, a(n) for n = 1..388 (first 180 terms from Alois P. Heinz)
FORMULA
a(n) <= A020639(n)^n, with equality for n a prime power. - Charlie Neder, Mar 06 2019
EXAMPLE
1, 2, 3, 4, 6, 8, 9, 12, 16, 18, 24, 27, 32, 36, 48, 54, 64,... is the beginning of the sequence of divisors of 6^6 = 46656. 8 is the 6th term of this sequence of divisors (which is sequence A114334), so a(6) = 8.
MAPLE
a:= n-> sort([numtheory[divisors](n^(n-1))[]])[n]:
seq(a(n), n=1..30); # Alois P. Heinz, Oct 09 2016
MATHEMATICA
Table[Divisors[n^n][[n]], {n, 27}] (* Michael De Vlieger, Sep 19 2017 *)
PROG
(PARI) m=27; for(n=1, m, d=divisors(n^n); print1(d[n], ", ")) \\ Klaus Brockhaus, Aug 14 2006
(GAP) List([1..30], n->DivisorsInt(n^n)[n]); # Muniru A Asiru, Mar 06 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
Leroy Quet, Aug 10 2006
EXTENSIONS
STATUS
approved