OFFSET
1,1
EXAMPLE
a(4) = 464 is a member because it is composite and is divisible by A318996(k) = 16.
MAPLE
filter:= proc(n) local D, s, d, v;
if isprime(n) then return false fi;
D:= numtheory:-divisors(n);
s:= convert(D, `+`);
v:= add(s mod d, d = D);
v > 0 and n mod v = 0
end proc:
select(filter, [$4..3*10^7]);
CROSSREFS
KEYWORD
nonn,more
AUTHOR
J. M. Bergot and Robert Israel, May 03 2021
STATUS
approved