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”).

A323511
a(n) = 1 if n is squarefree and A079559(A048675(n)) = 1, otherwise a(n) = 0.
2
1, 1, 0, 0, 1, 1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 0, 1, 0, 1, 0, 1, 1, 0
OFFSET
1
COMMENTS
Characteristic function for A283476, the range of A283475.
FORMULA
a(n) = A008966(n) * A079559(A048675(n)).
a(A283475(n)) = a(A283476(n)) = 1.
PROG
(PARI)
A048675(n) = my(f = factor(n)); sum(k=1, #f~, f[k, 2]*2^primepi(f[k, 1]))/2; \\ From A048675
A036987(n) = !bitand(n, 1+n);
A053644(n) = { my(k=1); while(k<=n, k<<=1); (k>>1); }; \\ From A053644
A053645(n) = (n-A053644(n));
A079559(n) = if(!n, 1, (1-A036987(1+n))*A079559(A053645(1+n)));
A323511(n) = (issquarefree(n) && A079559(A048675(n)));
CROSSREFS
KEYWORD
nonn
AUTHOR
Antti Karttunen, Jan 18 2019
STATUS
approved