login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A063735 Square deficient numbers. 1
1, 4, 9, 16, 25, 49, 64, 81, 121, 169, 225, 256, 289, 361, 441, 484, 529, 625, 676, 729, 841, 961, 1024, 1089, 1156, 1225, 1369, 1444, 1521, 1681, 1849, 2025, 2116, 2209, 2401, 2601, 2809, 3025, 3249, 3364, 3481, 3721, 3844, 3969, 4096, 4225, 4489, 4761 (list; graph; refs; listen; history; internal format)
OFFSET

1,2

LINKS

Harry J. Smith, Table of n, a(n) for n=1,...,1000

MATHEMATICA

Select[ #^2 & /@ Range[ 70 ], DivisorSigma[ 1, # ] < 2 # & ]

PROG

(PARI) j=[]; for(n=1, 8000, if(sigma(n)<(2*n), a=n; if(issquare(a), j=concat(j, a)))); j

(PARI) { n=0; for (m=1, 10^9, if (issquare(m) && sigma(m)<(2*m), write("b063735.txt", n++, " ", m); if (n==1000, break)) ) } [From Harry J. Smith (hjsmithh(AT)sbcglobal.net), Aug 29 2009]

(PARI) { n=0; for (m=1, 10^9, s=m^2; if (sigma(s)<(2*s), write("b063735.txt", n++, " ", s); if (n==1000, break)) ) } [From Harry J. Smith (hjsmithh(AT)sbcglobal.net), Aug 29 2009]

CROSSREFS

Cf. A005100.

Sequence in context: A188061 A069560 A075494 * A056798 A036454 A115648

Adjacent sequences:  A063732 A063733 A063734 * A063736 A063737 A063738

KEYWORD

nonn

AUTHOR

Jason Earls (zevi_35711(AT)yahoo.com), Aug 13 2001

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 16 14:07 EST 2012. Contains 205930 sequences.