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

A336457
a(n) = A065330(sigma(n)), where A065330 is fully multiplicative with a(2) = a(3) = 1, and a(p) = p for primes p > 3.
4
1, 1, 1, 7, 1, 1, 1, 5, 13, 1, 1, 7, 7, 1, 1, 31, 1, 13, 5, 7, 1, 1, 1, 5, 31, 7, 5, 7, 5, 1, 1, 7, 1, 1, 1, 91, 19, 5, 7, 5, 7, 1, 11, 7, 13, 1, 1, 31, 19, 31, 1, 49, 1, 5, 1, 5, 5, 5, 5, 7, 31, 1, 13, 127, 7, 1, 17, 7, 1, 1, 1, 65, 37, 19, 31, 35, 1, 7, 5, 31, 121, 7, 7, 7, 1, 11, 5, 5, 5, 13, 7, 7, 1, 1, 5, 7, 49
OFFSET
1,4
COMMENTS
Sequence removes prime factors 2 and 3 from the prime factorization of the sum of divisors of n.
FORMULA
a(n) = A065330(A000203(n)) = A038502(A161942(n)).
Multiplicative with a(p^e) = A065330(1 + p + p^2 + ... + p^e).
MATHEMATICA
Array[Times @@ Map[#1^#2 & @@ # &, DeleteCases[FactorInteger[DivisorSigma[1, #]], _?(First@ # <= 3 &)]] &, 97] (* Michael De Vlieger, Jul 24 2020 *)
PROG
(PARI)
A065330(n) = (n>>valuation(n, 2)/3^valuation(n, 3));
A336457(n) = A065330(sigma(n));
CROSSREFS
KEYWORD
nonn,mult
AUTHOR
Antti Karttunen, Jul 24 2020
STATUS
approved