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!)
A232557 Square numbers whose sum of proper square divisors is also square greater than 1. 4
900, 4900, 10404, 79524, 81796, 417316, 532900, 846400, 1542564, 2464900, 3232804, 3334276, 3496900, 12432676, 43850884, 50836900, 51811204, 71470116, 107453956, 236975236, 253892356, 432889636, 544102276, 864948100, 1192597156, 1450543396 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
10404 = 102^2 is a square number. Sum of proper square divisor of 10404 is 2601 + 1156 + 289 + 36 + 9 + 4 + 1 = 4096 = 64^2.
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[40000]^2, sqQ[A035316[#] - #]&] (* Amiram Eldar, Aug 12 2023 *)
PROG
(PARI) {for(n=1, 10^5, m=n*n; k=sumdiv(m, d, d*issquare(d)*(d<m)); if(issquare(k)&&k>>1, print(m)))}
CROSSREFS
Subsequence of A232556.
Sequence in context: A246887 A232556 A069096 * A119541 A173486 A258155
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 23 15:20 EDT 2024. Contains 371916 sequences. (Running on oeis4.)