OFFSET
1,1
COMMENTS
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
EXAMPLE
The sequence of superior prime divisors begins: {}, {2}, {3}, {2}, {5}, {3}, {7}, {}, {3}, {5}, {11}, {}, {13}, {7}, {5}, {}, {17}, {}, {19}, {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
These divisors (superior prime) are counted by A341591.
The strictly superior version is A341643.
A033676 selects the greatest inferior divisor.
A033677 selects the smallest superior divisor.
A038548 counts superior (or inferior) divisors.
A056924 counts strictly superior (or strictly inferior) divisors.
A060775 selects the greatest strictly inferior divisor.
A070038 adds up superior divisors.
A140271 selects the smallest strictly superior divisor.
A161908 lists superior divisors.
A207375 lists central divisors.
KEYWORD
nonn
AUTHOR
Gus Wiseman, Feb 23 2021
STATUS
approved