OFFSET
2,1
COMMENTS
n-free numbers are numbers that are not divisible by an n-th power larger than 1. E.g., A005117, A004709, and A046100 for n = 2, 3, and 4, respectively.
The sum of n-free divisors of a number is the sum of its divisors that are n-free numbers. E.g., A048250, A073185, and A385006 for n = 2, 3, and 4, respectively.
All the terms are in A025487.
LINKS
Amiram Eldar, Table of n, a(n) for n = 2..1000
FORMULA
a(n) = 945 * 2^n for n >= 7.
EXAMPLE
MATHEMATICA
a[n_] := If[n < 7, {401120980260, 360360, 55440, 110880, 100800}[[n-1]], 945 * 2^n]; Array[a, 26, 2]
PROG
(PARI) a(n) = if(n < 7, [401120980260, 360360, 55440, 110880, 100800][n-1], 945 * 2^n);
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar, Aug 19 2025
STATUS
approved
