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

A366887
Sum of the odd squarefree divisors permuted by A163511.
3
1, 1, 1, 4, 1, 4, 4, 6, 1, 4, 4, 6, 4, 24, 6, 8, 1, 4, 4, 6, 4, 24, 6, 8, 4, 24, 24, 48, 6, 32, 8, 12, 1, 4, 4, 6, 4, 24, 6, 8, 4, 24, 24, 48, 6, 32, 8, 12, 4, 24, 24, 48, 24, 192, 48, 96, 6, 32, 32, 72, 8, 48, 12, 14, 1, 4, 4, 6, 4, 24, 6, 8, 4, 24, 24, 48, 6, 32, 8, 12, 4, 24, 24, 48, 24, 192, 48, 96, 6, 32, 32, 72, 8
OFFSET
0,4
LINKS
FORMULA
a(n) = A206787(A163511(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));
A206787(n) = sumdiv(n, d, d*issquarefree(2*d));
CROSSREFS
Cf. A163511, A206787, A366888 (rgs-transform).
Sequence in context: A196222 A035646 A144034 * A204714 A341100 A350639
KEYWORD
nonn
AUTHOR
Antti Karttunen, Nov 04 2023
STATUS
approved