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!)
A224441 Numbers n such that sigma(n)+d(n) and sigma(n+1)+d(n+1) are perfect squares. 1
61, 2369, 4469, 8460, 13208, 44790, 162734, 281560, 283938, 334469, 500465, 533045, 609953, 871853, 962247, 1317885, 1741445, 1792745, 2499845, 3013246, 4099031, 5646629, 7009389, 7012135, 8396781, 8740480, 8822093, 11146381, 11957693, 15002679, 18895694 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
61 is in the list since sigma(61)+d(61)=64 and sigma(62)+d(62)=100.
MATHEMATICA
Sqd[n_] := Sqrt[DivisorSigma[1, n] + DivisorSigma[0, n]]; t = {}; Do[If[IntegerQ[Sqd[n]] && IntegerQ[Sqd[n + 1]], AppendTo[t, n]], {n, 20000000}]; t
SequencePosition[Table[If[IntegerQ[Sqrt[DivisorSigma[0, n]+DivisorSigma[1, n]]], 1, 0], {n, 189*10^5}], {1, 1}][[All, 1]] (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Aug 31 2020 *)
PROG
(PARI) is(n)=issquare(sigma(n)+numdiv(n))&&issquare(sigma(n+1)+ numdiv(n+1)) \\ Charles R Greathouse IV, Apr 09 2013
CROSSREFS
Sequence in context: A017724 A009841 A038650 * A078962 A000508 A191092
KEYWORD
nonn
AUTHOR
Jayanta Basu, Apr 09 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 May 15 14:34 EDT 2024. Contains 372540 sequences. (Running on oeis4.)