OFFSET
1,8
COMMENTS
LINKS
Michael De Vlieger, Table of n, a(n) for n = 1..16384
Michael De Vlieger, Log log scatterplot of a(n), n = 8..2^14, ignoring a(n) = 0, showing a(n) for prime power n in gold, a(n) for squarefree n in green, otherwise blue.
FORMULA
a(n) is the sum of row n of A272619.
a(n) = 0 for prime n, n = 4, and n = 6.
From Michael De Vlieger, Apr 29 2026: (Start)
EXAMPLE
Table of n and a(n) for select n, showing prime power decomposition of the latter and row n of A272619:
n a(n) Factor(a(n)) Row n of A272619
-----------------------------------------------------
8 6 2 * 3 {6}
9 6 2 * 3 {6}
10 6 2 * 3 {6}
12 10 2 * 5 {10}
14 28 2^2 * 7 {6,10,12}
15 28 2^2 * 7 {6,10,12}
16 42 2 * 3 * 7 {6,10,12,14}
18 39 3 * 13 {10,14,15}
20 65 5 * 13 {6,12,14,15,18}
21 65 5 * 13 {6,12,14,15,18}
22 80 2^4 * 5 {6,10,12,14,18,20}
24 102 2 * 3 * 17 {10,14,15,20,21,22}
25 45 3^2 * 5 {10,15,20}
26 126 2 * 3^2 * 7 {6,10,12,14,18,20,22,24}
27 96 2^5 * 3 {6,12,15,18,21,24}
28 159 3 * 53 {6,10,12,18,20,21,22,24,26}
MATHEMATICA
rad[x_] := rad[x] = Times @@ FactorInteger[x][[All, 1]]; Table[r = rad[n]; If[PrimeQ[n], 0, Total@ Select[Range[n], And[1 < GCD[#, n] < #, ! Divisible[n, rad[#]]] &]], {n, 120}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Michael De Vlieger, Mar 02 2025
STATUS
approved
