login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A232554 Square numbers whose sum of square divisors is also square. 4
1, 1764, 60516, 82369, 529984, 2056356, 2798929, 3534400, 18181696, 38900169, 96020401, 97121025, 335988900, 455907904, 457318225, 617820736, 1334513961, 1599200100, 2176689025, 3279852900, 4464244225, 8586616896, 15688815025, 24514164900, 33366502225 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = A046655(n)^2.
EXAMPLE
60516 = 246^2. Sum of square divisors: 60516 + 15129 + 6724 + 1681 + 36 + 9 + 4 + 1 = 84100 = 290^2.
MATHEMATICA
f[p_, e_] := (p^(2*(1 + Floor[e/2])) - 1)/(p^2 - 1); A035316[1] = 1; A035316[n_] := Times @@ f @@@ FactorInteger[n];
Select[Range[200000]^2, IntegerQ[Sqrt[A035316[#]]]&] (* Amiram Eldar, Aug 12 2023 *)
PROG
(PARI) {for(n=1, 10^5, m=n*n; k=sumdiv(m, d, d*issquare(d)); if(issquare(k), print(m)))}
CROSSREFS
Sequence in context: A237781 A205904 A061627 * A111886 A343989 A343988
KEYWORD
nonn
AUTHOR
Antonio Roldán, Nov 26 2013
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 10:11 EDT 2024. Contains 371935 sequences. (Running on oeis4.)