The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A064730 Numbers whose sum of nonunitary divisors and sum of unitary divisors are both positive squares. 5
15012, 124956, 128412, 135972, 186732, 219520, 241812, 377892, 414180, 420660, 447876, 453060, 453492, 497772, 504036, 515052, 523044, 528876, 544212, 658560, 776412, 826956, 1009792, 1020060, 1135836, 1191132, 1425060, 1467180, 1511892 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
PROG
(PARI) {usigma(n, s=1, fac, i) = fac=factor(n); for(i=1, matsize(fac)[1], s=s*(1+fac[i, 1]^fac[i, 2])); return(s); } nu(n) = sigma(n)-usigma(n); for(n=1, 10^8, if(nu(n)>0 && issquare(nu(n)) && issquare(usigma(n)), print1(n, ", ")))
(PARI) usigma(n)= { local(f, s=1); f=factor(n); for(i=1, matsize(f)[1], s*=1 + f[i, 1]^f[i, 2]); return(s) } { n=0; for (m = 1, 10^9, u=usigma(m); nu=sigma(m) - u; if (nu>0 && issquare(nu) && issquare(u), write("b064730.txt", n++, " ", m); if (n==750, break)) ) } \\ Harry J. Smith, Sep 24 2009
CROSSREFS
Sequence in context: A178929 A145275 A234654 * A081635 A165614 A104875
KEYWORD
nonn
AUTHOR
Jason Earls, Oct 17 2001
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 May 16 00:16 EDT 2024. Contains 372549 sequences. (Running on oeis4.)