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

A320965
Squares divisible by a single cube > 1.
4
16, 81, 144, 324, 400, 625, 784, 1936, 2025, 2401, 2500, 2704, 3600, 3969, 4624, 5625, 5776, 7056, 8100, 8464, 9604, 9801, 13456, 13689, 14641, 15376, 15876, 17424, 19600, 21609, 21904, 22500, 23409, 24336, 26896, 28561, 29241, 29584, 30625, 35344, 39204, 41616, 42849
OFFSET
1,1
COMMENTS
Numbers whose prime factorization has a single exponent that is equal to 4 and all the rest, if they exist, are equal to 2. - Amiram Eldar, Jun 25 2022
LINKS
FORMULA
From Amiram Eldar, Jun 25 2022: (Start)
a(n) = A060687(n)^2.
Sum_{n>=1} 1/a(n) = (15/Pi^2) * Sum_{k>=2} (-1)^k * P(2*k) = 0.09603403868516162554..., where P(s) is the prime zeta function. (End)
MATHEMATICA
sdscQ[n_]:=Count[Rest[Divisors[n]], _?(IntegerQ[Surd[#, 3]]&)]==1; Select[ Range[ 250]^2, sdscQ] (* Harvey P. Dale, Aug 18 2020 *)
q[n_] := (e = Sort[FactorInteger[n][[;; , 2]], Greater])[[1]] == 4 && AllTrue[Rest[e], # == 2 &]; Select[Range[200]^2, q] (* Amiram Eldar, Jun 25 2022 *)
KEYWORD
nonn
AUTHOR
Hugo Pfoertner, Oct 25 2018
STATUS
approved