OFFSET
1,1
COMMENTS
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
EXAMPLE
The strictly superior divisors of 15 are {5,15}, and A064052(10) = 15, so a(10) = 5.
MATHEMATICA
Join@@Table[Select[Divisors[n], PrimeQ[#]&&#>n/#&], {n, 100}]
PROG
(PARI) lista(nmax) = {my(p); for(n = 1, nmax, p = select(x -> (x^2 > n), factor(n)[, 1]); if(#p == 1, print1(p[1], ", "))); } \\ Amiram Eldar, Nov 01 2024
CROSSREFS
The inferior version is (largest inferior prime divisor) is A217581.
These divisors (strictly superior prime) are counted by A341642.
The weak version is A341676.
A038548 counts superior (or inferior) divisors.
A048098 lists numbers without a strictly superior prime divisor.
A056924 counts strictly superior (or strictly inferior) divisors.
A140271 selects the smallest strictly superior divisor.
A207375 lists central divisors.
A238535 adds up strictly superior divisors.
A341591 counts superior prime divisors.
KEYWORD
nonn
AUTHOR
Gus Wiseman, Feb 20 2021
STATUS
approved