login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A300832
a(n) = Product_{d|n} A019565(d)^[moebius(n/d) = -1].
8
1, 2, 2, 3, 2, 18, 2, 5, 6, 30, 2, 75, 2, 90, 60, 7, 2, 210, 2, 105, 180, 126, 2, 245, 10, 210, 14, 525, 2, 132300, 2, 11, 252, 66, 300, 1155, 2, 198, 420, 385, 2, 346500, 2, 825, 2940, 990, 2, 847, 30, 3234, 132, 1155, 2, 15246, 420, 2695, 396, 2310, 2, 6670125, 2, 6930, 1540, 13, 700, 128700, 2, 195, 1980, 343980, 2, 5005, 2, 390
OFFSET
1,2
LINKS
FORMULA
a(n) = A293214(n) / (A300830(n)*A300831(n)).
PROG
(PARI)
A019565(n) = {my(j, v); factorback(Mat(vector(if(n, #n=vecextract(binary(n), "-1..1")), j, [prime(j), n[j]])~))}; \\ From A019565
A300832(n) = { my(m=1); fordiv(n, d, if(-1==moebius(n/d), m *= A019565(d))); m; };
KEYWORD
nonn
AUTHOR
Antti Karttunen, Mar 16 2018
STATUS
approved