OFFSET
1,1
COMMENTS
We may define the number of divisors of a number n in four ways:
(1) A070824(n) = number of nontrivial or real divisors: 1 < d < n;
(2) variant of A032741(n) = number of small divisors: 1 and real divisors;
(3) A032741(n) = number of big or proper divisors: real divisors and n;
(4) A000005(n) = number of all divisors of n: 1, n and real divisors.
The case (1), divisibility through the number of nontrivial divisors, defines this sequence.
REFERENCES
T. Szimeonov, A számok [The numbers], Budapest, 2019, VVMA, 124 p.
EXAMPLE
MATHEMATICA
seqQ[n_] := (nd = DivisorSigma[0, n] - 2) > 0 && Divisible[n, nd]; Select[Range[200], seqQ] (* Amiram Eldar, Mar 11 2019 *)
PROG
(PARI) f(n) = if (n==1, 0, numdiv(n)-2); \\ A070824
isok(n) = f(n) && !frac(n/f(n)); \\ Michel Marcus, Feb 17 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
Todor Szimeonov, Feb 05 2019
EXTENSIONS
More terms from Michel Marcus, Feb 17 2019
STATUS
approved