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

A348501
a(n) = A348496(A276086(n)), where A348496(n) = A348495(n) / A003557(n).
4
1, 1, 1, 5, 1, 21, 1, 1, 1, 1, 3, 3, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 5, 35, 3, 3, 1, 3, 5, 1, 1, 3, 3, 1, 1, 13, 3, 3, 1, 3, 1, 3, 1, 3, 13, 3, 1, 1, 1, 3, 3, 1, 5, 5, 39, 3, 1, 3, 1, 3, 1, 3, 3, 9, 3, 3, 9, 9, 1, 3, 1, 3, 1, 3, 1, 3, 1, 57, 1, 3, 57, 9, 15, 15, 3, 9, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 3, 3
OFFSET
0,4
FORMULA
a(n) = A348496(A276086(n)).
MATHEMATICA
Block[{b = MixedRadix[Reverse@ Prime@ Range@ 12]}, Map[Function[n, GCD[Total@ GCD[n, Range[n]], DivisorSum[n, #*(If[# < 2, 0, # Total[#2/#1 & @@@ FactorInteger[#]]] &[n/#]) &]]/Apply[Times, Map[#1^(#2 - 1) & @@ # &, FactorInteger[n]]]], Table[Function[k, Times @@ Power @@@ # &@ Transpose@ {Prime@ Range@ Length@ k, Reverse@ k}]@ IntegerDigits[n, b], {n, 0, 101}] ] ] (* Michael De Vlieger, Oct 21 2021 *)
PROG
(PARI)
\\ Needs also code from A348496:
A276086(n) = { my(m=1, p=2); while(n, m *= (p^(n%p)); n = n\p; p = nextprime(1+p)); (m); };
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Antti Karttunen, Oct 21 2021
STATUS
approved