OFFSET
1,2
LINKS
Michael De Vlieger, Table of n, a(n) for n = 1..10000
Michael De Vlieger, Efficient Mathematica program to generate large datasets.
FORMULA
EXAMPLE
Let R(k) = {j : rad(j) | k}. For example, R(6) = A003586.
a(1) = 1 since 1 is the smallest number such that rad(1) | 1.
a(2) = 3 since s(2) = 4 = 2^2, with f(2^2) = 3.
a(3) = 4 since s(3) = 8 = 2^3, with f(2^3) = 4.
a(4) = 3 since s(4) = 9 = 3^2, with f(3^2) = 3.
a(5) = 5 since s(5) = 16 = 2^4, with f(2^4) = 5.
a(9) = 14 since s(9) = 36, the 14th number in R(rad(36)) = R(6) = A003586.
a(12) = 18 since s(12) = 72, the 18th number in R(rad(72)) = R(6) = A003586.
a(14) = 15 since s(14) = 100, the 14th number in R(rad(100)) = R(10) = A003592, etc.
MATHEMATICA
With[{nn = 2000}, Map[Function[k, Count[Range[k], _?(Divisible[k, rad[#]] &)]], Union@ Flatten@ Table[a^2*b^3, {b, nn^(1/3)}, {a, Sqrt[nn/b^3]} ] ] ]
CROSSREFS
KEYWORD
nonn
AUTHOR
Michael De Vlieger, Sep 13 2025
STATUS
approved
