A037025 a(1) = 8; a(n) = least k with d(k) = a(n-1), where d(k) is the number of divisors of k.
8, 24, 360, 3603600, 2549066103582535692163008000000
Offset: 1
Programs
-
PARI
lista(nn) = {a=8; print1(a, ", "); for (n=2, nn, k=1; while(numdiv(k) != a, k++); print1(k, ", "); a = k;);} \\ Michel Marcus, Feb 17 2015
Extensions
One more term from Naohiro Nomoto, Jun 28 2001
Comments