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!)
A232556 Numbers whose sum of proper square divisors is a square greater than 1. 4
900, 3528, 4900, 5292, 8820, 10404, 10584, 12348, 17640, 19404, 22932, 24696, 26460, 29988, 33516, 37044, 38808, 40572, 45864, 51156, 52920, 54684, 58212, 59976, 61740, 65268, 67032, 68796, 72324, 74088, 75852, 79524, 81144, 81796, 82908, 89964, 93492 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
Sum of proper square divisors of 5292: 1764 + 441 + 196 + 49 + 36 + 9 + 4 + 1 = 2500 = 50^2 is square number.
MATHEMATICA
f[p_, e_] := (p^(2*(1 + Floor[e/2])) - 1)/(p^2 - 1); A035316[1] = 1; A035316[n_] := Times @@ f @@@ FactorInteger[n]; sqQ[n_] := n>1 && IntegerQ[Sqrt[n]];
Select[Range[100000], sqQ[A035316[#] - If[IntegerQ[Sqrt[#]], #, 0]] &] (* Amiram Eldar, Aug 12 2023 *)
PROG
(PARI) {for(n=1, 10^5, k=sumdiv(n, d, d*issquare(d)*(d<n)); if(issquare(k)&&k>>1, print(n)))}
CROSSREFS
Disjoint union of A232555 and A232557.
Cf. A232554.
Sequence in context: A258888 A287800 A246887 * A069096 A232557 A119541
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 19 21:09 EDT 2024. Contains 371798 sequences. (Running on oeis4.)