login
The OEIS is supported by
the many generous donors to the OEIS Foundation
.
A324182
a(n) =
A083254
(
A163511
(n)), where
A083254
(n) = 2*phi(n) - n, the Möbius transform of the deficiency of n.
5
1, 0, 0, 1, 0, 3, -2, 3, 0, 9, -6, 15, -4, 1, -2, 5, 0, 27, -18, 75, -12, 5, -10, 35, -8, 3, -14, 13, -4, 3, -2, 9, 0, 81, -54, 375, -36, 25, -50, 245, -24, 15, -70, 91, -20, 21, -14, 99, -16, 9, -42, 65, -28, -9, -22, 43, -8, 9, -18, 25, -4, 7, -2, 11, 0, 243, -162, 1875, -108, 125, -250, 1715, -72, 75, -350, 637, -100, 147, -98, 1089
(
list
;
graph
;
refs
;
listen
;
history
;
text
;
internal format
)
OFFSET
0,6
LINKS
Antti Karttunen,
Table of n, a(n) for n = 0..16384
Antti Karttunen,
Data supplement: n, a(n) computed for n = 0..65537
FORMULA
a(n) =
A083254
(
A163511
(n)).
For n > 0, a(n) =
A324052
(
A054429
(n)).
PROG
(PARI)
A163511
(n) = if(!n, 1, my(p=2, t=1); while(n>1, if(!(n%2), (t*=p), p=nextprime(1+p)); n >>= 1); (t*p));
A083254
(n) = (2*eulerphi(n)-n);
A324182
(n) =
A083254
(
A163511
(n));
CROSSREFS
Cf.
A054429
,
A083254
,
A163511
,
A324052
,
A324183
,
A324184
,
A324185
(compare the scatter plot),
A366804
(rgs-transform).
Cf. also
A324103
.
Sequence in context:
A086099
A048967
A381656
*
A166592
A103497
A191390
Adjacent sequences:
A324179
A324180
A324181
*
A324183
A324184
A324185
KEYWORD
sign
,
look
AUTHOR
Antti Karttunen
, Feb 18 2019
STATUS
approved