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”).

A292144
a(n) is the greatest k < n such that k*n is square.
2
0, 0, 0, 1, 0, 0, 0, 2, 4, 0, 0, 3, 0, 0, 0, 9, 0, 8, 0, 5, 0, 0, 0, 6, 16, 0, 12, 7, 0, 0, 0, 18, 0, 0, 0, 25, 0, 0, 0, 10, 0, 0, 0, 11, 20, 0, 0, 27, 36, 32, 0, 13, 0, 24, 0, 14, 0, 0, 0, 15, 0, 0, 28, 49, 0, 0, 0, 17, 0, 0, 0, 50, 0, 0, 48, 19, 0, 0, 0, 45
OFFSET
1,8
COMMENTS
a(n) = 0 if and only if n is squarefree: a(A005117(n)) = 0 for all n, and a(A013929(n)) > 0 for all n.
A072905 is the right inverse of a: a(A072905(n)) = n.
If a(n) = a(m) != 0, then n = m.
Proof: Without loss of generality, assume a(n) = a(m) < n < m. Then n*a(n)*m*a(m) is square and a(n)*a(m) is square, which implies that n*m is square. Notice that n > a(m), so a(m) is not the greatest integer k such that k*m is square. This is a contradiction.
LINKS
FORMULA
a(n) = A007913(n)*(ceiling(sqrt(n/A007913(n))-1)^2). - Robert Israel and Michel Marcus, Sep 11 2017
EXAMPLE
For n = 63, a(63) = 28 because 28*63 = (7*4)*(7*9) = (7*2*3)^2 = 42^2, and there is no integer 28 < k < 63 such that 63*k is square.
MAPLE
f:= proc(n) local F, r;
F:= ifactors(n)[2];
r:= mul(t[1], t = select(t -> t[2]::odd, F));
r*(ceil(sqrt(n/r))-1)^2;
end proc: # Robert Israel, Sep 10 2017
MATHEMATICA
a[n_] := If[SquareFreeQ[n], 0, For[k = n-1, k > 0, k--, If[IntegerQ[ Sqrt[ k*n] ], Return[k]]]]; Array[a, 80] (* Jean-François Alcover, Sep 11 2017 *)
PROG
(PARI) forstep (k=n-1, 1, -1, if (issquare(k*n), return (k))); return (0); \\ Michel Marcus, Sep 10 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Peter Kagey, Sep 09 2017
STATUS
approved