OFFSET
1,1
COMMENTS
a(n) is the least prime p whose exponent in the prime factorization of A038109(n) is exactly 2. - Robert Israel, Mar 28 2017
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
FORMULA
a(n) = sqrt(A284018(n)). - Amiram Eldar, Nov 14 2020
EXAMPLE
A038109(3)=12, 12 = 2*2*3, so 12 is divisible by the square of 2.
MAPLE
MATHEMATICA
s[n_] := If[(pos = Position[(f = FactorInteger[n])[[;; , 2]], 2]) == {}, 1, f[[pos[[1, 1]], 1]]]; Select[Array[s, 300], # > 1 &] (* Amiram Eldar, Nov 14 2020 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Robert Price, Mar 18 2017
EXTENSIONS
Corrected by Robert Israel, Mar 28 2017
STATUS
approved