OFFSET
1
COMMENTS
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
EXAMPLE
The sequence of sets of strictly superior prime divisors of each positive integer begins: {}, {2}, {3}, {}, {5}, {3}, {7}, {}, {}, {5}, {11}, {}, {13}, {7}, {5}, {}, {17}, {}, {19}, {5}, ...
MATHEMATICA
Table[Length[Select[Divisors[n], PrimeQ[#]&&#>n/#&]], {n, 100}]
a[n_] := Count[FactorInteger[n][[;; , 1]], _?(#^2 > n &)]; a[1] = 0; Array[a, 100] (* Amiram Eldar, Nov 01 2024 *)
PROG
(PARI) a(n) = #select(x -> (x^2 > n), factor(n)[, 1]); \\ Amiram Eldar, Nov 01 2024
CROSSREFS
Positions of zeros are A048098.
The inferior version is A063962.
Positions of ones are A064052.
The strictly inferior version is A333806.
Dominated by A341591 (the weak version).
The version for odd instead of prime divisors is A341594.
The version for squarefree instead of prime divisors is A341595.
The strictly superior prime divisors themselves are listed by A341643.
The version for prime-power instead of prime divisors is A341644.
A140271 selects the smallest strictly superior divisor.
A038548 counts superior (or inferior) divisors.
A056924 counts strictly superior (or strictly inferior) divisors.
A207375 list central divisors.
A341673 lists strictly superior divisors.
KEYWORD
nonn
AUTHOR
Gus Wiseman, Feb 21 2021
STATUS
approved