OFFSET
1,4
COMMENTS
Sequence removes prime factors 2 and 3 from the prime factorization of the sum of divisors of n.
LINKS
Antti Karttunen, Table of n, a(n) for n = 1..10000
Antti Karttunen, Data supplement: n, a(n) computed for n = 1..65537
FORMULA
MATHEMATICA
Array[Times @@ Map[#1^#2 & @@ # &, DeleteCases[FactorInteger[DivisorSigma[1, #]], _?(First@ # <= 3 &)]] &, 97] (* Michael De Vlieger, Jul 24 2020 *)
CROSSREFS
KEYWORD
nonn,mult
AUTHOR
Antti Karttunen, Jul 24 2020
STATUS
approved