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

A366885
Dedekind psi function applied to the odd part of n, permuted by A163511: a(n) = A347385(A163511(n)).
3
1, 1, 1, 4, 1, 12, 4, 6, 1, 36, 12, 30, 4, 24, 6, 8, 1, 108, 36, 150, 12, 120, 30, 56, 4, 72, 24, 48, 6, 32, 8, 12, 1, 324, 108, 750, 36, 600, 150, 392, 12, 360, 120, 336, 30, 224, 56, 132, 4, 216, 72, 240, 24, 192, 48, 96, 6, 96, 32, 72, 8, 48, 12, 14, 1, 972, 324, 3750, 108, 3000, 750, 2744, 36, 1800, 600, 2352
OFFSET
0,4
LINKS
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));
A347385(n) = if(1==n, n, my(f=factor(n>>valuation(n, 2))); prod(i=1, #f~, f[i, 1]^f[i, 2] + f[i, 1]^(f[i, 2]-1)));
CROSSREFS
Cf. A001615, A163511, A347385, A366886 (rgs-transform).
Cf. also A324186.
Sequence in context: A130322 A316232 A372354 * A212046 A232013 A246943
KEYWORD
nonn
AUTHOR
Antti Karttunen, Nov 04 2023
STATUS
approved