OFFSET
1,2
COMMENTS
For n > 1, a(n) is the index of the greatest prime factor of n among the divisors of n (see A027750). - Michel Marcus, Jan 21 2019
LINKS
Antti Karttunen, Table of n, a(n) for n = 1..65537
Eric Weisstein's World of Mathematics, Divisor Function
Eric Weisstein's World of Mathematics, Greatest Prime Factor
FORMULA
EXAMPLE
n=28: gpf(28)=7 and divisors = {1,2,4,7,14,28}: 1<=7, 2<=7, 4<=7 and 7<=7, therefore a(28)=4.
MATHEMATICA
Table[Count[Divisors[n], _?(#<=FactorInteger[n][[-1, 1]]&)], {n, 100}] (* Harvey P. Dale, May 01 2016 *)
PROG
(PARI) a(n) = if (n==1, 1, my(f = factor(n), gpf = f[#f~, 1]); sumdiv(n, d, d <= gpf)); \\ Michel Marcus, Sep 21 2014
(PARI) a(n) = if (n==1, 1, vecsearch(divisors(n), vecmax(factor(n)[, 1]))); \\ Michel Marcus, Jan 21 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Aug 17 2003
STATUS
approved