login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A114069
sigma(n) + n is a square.
2
33, 90, 385, 420, 649, 900, 1441, 1464, 1480, 1729, 2025, 2616, 3168, 3588, 3984, 4005, 4873, 5049, 5185, 6225, 7153, 7585, 8740, 9060, 10285, 11080, 12280, 12609, 13914, 14809, 15136, 16065, 16345, 17017, 17353, 17809, 18073, 18625, 19098
OFFSET
1,1
LINKS
EXAMPLE
sigma(33) + 33 = 81 = 9^2.
MATHEMATICA
Select[Range[20000], IntegerQ[Sqrt[DivisorSigma[1, #]+#]]&] (* Harvey P. Dale, May 09 2011 *)
PROG
(PARI) isok(n) = issquare (n+sigma(n)); \\ Michel Marcus, Aug 13 2019
CROSSREFS
Sequence in context: A075213 A231392 A231460 * A350220 A305221 A316799
KEYWORD
nonn
AUTHOR
Giovanni Resta, Feb 13 2006
STATUS
approved