OFFSET
1,1
COMMENTS
LINKS
Paolo P. Lava, Table of n, a(n) for n = 1..5000
EXAMPLE
Prime factors of 88 are 2^3 and 11; its multiplicative projection is 2*3*11 = 66 and 66 does not divide 88. Therefore 88 is in the sequence.
Prime factors of 108 are 2^2 and 3^3; its multiplicative projection is 2*2*3*3 = 36 and 108 / 36 = 3. therefore 108 is not in the sequence.
MAPLE
with(numtheory); P:=proc(q) local a, k, n;
for n from 1 to q do a:=ifactors(n)[2]; b:=mul(a[k][2]*a[k][1], k=1..nops(a));
if not type(n/b, integer) then print(n); fi; od; end: P(10^6);
MATHEMATICA
selQ[n_] := !Divisible[n, Times @@ Flatten[FactorInteger[n]]];
Select[Range[1000], selQ] (* Jean-François Alcover, Apr 08 2020 *)
PROG
(PARI) ok(n)={my(f=factor(n)); n % prod(k=1, matsize(f)[1], f[k, 1]*f[k, 2]) <> 0} \\ Andrew Howroyd, Feb 26 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
Paolo P. Lava, Oct 24 2013
EXTENSIONS
Missing a(85) in b-file inserted by Andrew Howroyd, Feb 26 2018
STATUS
approved