login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A283671
Square root of the single square referenced in A190641.
2
2, 2, 3, 2, 2, 3, 2, 2, 5, 3, 2, 2, 2, 2, 3, 2, 7, 5, 2, 3, 2, 2, 3, 2, 2, 5, 2, 2, 3, 2, 2, 3, 2, 2, 7, 3, 2, 2, 2, 3, 2, 11, 2, 5, 3, 2, 2, 3, 2, 2, 7, 2, 5, 2, 3, 2, 2, 3, 2, 2, 13, 3, 2, 5, 2, 2, 2, 3, 2, 3, 2, 3, 2, 2, 2, 2, 2, 2, 3, 2, 2, 11, 3, 2, 7
OFFSET
1,1
LINKS
FORMULA
a(n) = sqrt(A283670(n)) = A249739(A190641(n)). - Amiram Eldar, Jul 28 2024
EXAMPLE
A190641(4) = 12, 12 = 2*2*3, so 12 has only one square factor, namely 4, and the square root is 2.
MATHEMATICA
f[n_] := Module[{f = FactorInteger[n], ind}, ind = Position[f[[;; , 2]], _?(# > 1 &)]; If[Length[ind] == 1, f[[ind[[1, 1]], 1]], Nothing]]; Array[f, 300] (* Amiram Eldar, Jul 28 2024 *)
PROG
(PARI) lista(kmax) = for(k = 1, kmax, my(f = factor(k)); if(#select(x -> (x>1), f[, 2]) == 1, for(i = 1, #f~, if(f[i, 2] > 1, print1(f[i, 1], ", "); break)))); \\ Amiram Eldar, Jul 28 2024
CROSSREFS
KEYWORD
nonn
AUTHOR
Robert Price, Mar 13 2017
STATUS
approved