OFFSET
1,1
COMMENTS
No multiple of a term is a term of A368110.
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
EXAMPLE
a(5) = 18 is a term because the prime indices of 18 = 2 * 3^2 are 1,2,2, and there are 3 of these but only 2 divisors of prime indices, namely 1 and 2.
MAPLE
filter:= proc(n) uses numtheory; local F, D, t;
F:= map(t -> [pi(t[1]), t[2]], ifactors(n)[2]);
D:= `union`(seq(divisors(t[1]), t = F));
nops(D) < add(t[2], t = F)
end proc:
select(filter, [$1..300]);
MATHEMATICA
filter[n_] := Module[{F, d},
F = {PrimePi[#[[1]]], #[[2]]}& /@ FactorInteger[n];
d = Union[Flatten[Divisors /@ F[[All, 1]]]];
Length[d] < Total[F[[All, 2]]]];
Select[Range[300], filter] (* Jean-François Alcover, Mar 08 2024, after Maple code *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Robert Israel, Feb 15 2024
STATUS
approved