A343883 Numbers k such that A023896(k) is a multiple of A340179(k).
3, 4, 6, 8, 10, 16, 30, 54
Offset: 1
Examples
a(6) = 16 is a term because A023896(16) = 64 is a multiple of A340179(16) = 32.
Programs
-
Maple
filter:= proc(n) local S,s,t; S:= select(t -> igcd(t,n)=1, [$1..n-1]); s:= nops(S)*n/2; s mod add(s mod t,t=S) = 0; end proc: select(filter, [$3..1000]);
Comments