login
The OEIS is supported by
the many generous donors to the OEIS Foundation
.
A300719
Difference between
A003557
(n divided by largest squarefree divisor of n) and its Möbius transform.
3
0, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 4, 1, 3, 1, 2, 1, 1, 1, 4, 1, 1, 3, 2, 1, 1, 1, 8, 1, 1, 1, 4, 1, 1, 1, 4, 1, 1, 1, 2, 3, 1, 1, 8, 1, 5, 1, 2, 1, 9, 1, 4, 1, 1, 1, 2, 1, 1, 3, 16, 1, 1, 1, 2, 1, 1, 1, 8, 1, 1, 5, 2, 1, 1, 1, 8, 9, 1, 1, 2, 1, 1, 1, 4, 1, 3, 1, 2, 1, 1, 1, 16, 1, 7, 3, 6, 1, 1, 1, 4, 1
(
list
;
graph
;
refs
;
listen
;
history
;
text
;
internal format
)
OFFSET
1,8
LINKS
Antti Karttunen,
Table of n, a(n) for n = 1..65537
FORMULA
a(n) = -Sum_{d|n, d<n}
A008683
(n/d)*
A003557
(d).
a(n) =
A003557
(n) -
A300717
(n).
PROG
(PARI)
A003557
(n) = { my(f=factor(n)); for (i=1, #f~, f[i, 2] = max(0, f[i, 2]-1)); factorback(f); }; \\ From
A003557
A300719
(n) = -sumdiv(n, d, (d<n)*moebius(n/d)*
A003557
(d));
CROSSREFS
Cf.
A003557
,
A008683
,
A300717
.
Sequence in context:
A214247
A211987
A165983
*
A341998
A083894
A128257
Adjacent sequences:
A300716
A300717
A300718
*
A300720
A300721
A300722
KEYWORD
nonn
AUTHOR
Antti Karttunen
, Mar 12 2018
STATUS
approved