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!)
A130698 Numbers n such that the sum of the sum-of-divisors function of all integers up to n is a square. 2
1, 2, 53, 174, 299, 1377, 12695, 44469, 423922, 2068248, 12084331, 46270468, 1330157705, 5319721272, 144083207084, 178358383042, 212557463865, 2125965021380, 6323865789846, 7277308988873 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
It is not known if this sequence is infinite.
a(15) > 10^11. - Donovan Johnson, Mar 17 2011
The standard heuristic suggests this sequence is infinite with logarithmic density. - Charles R Greathouse IV, Feb 04 2013
LINKS
FORMULA
n such that sigma(1)+sigma(2)+...+sigma(n) = x^2 with some integer x.
EXAMPLE
a(2) = 2 since sigma(1) = 1^2 and sigma(1)+sigma(2) = 2^2.
MATHEMATICA
L=0; For[j = 1, j < 1000000, j++, L = L + DivisorSigma[1, j]; If[L == Floor[Sqrt[L]]^2, Print[j, " ", Floor[Sqrt[L]]]]]
PROG
(PARI) s=0; for(n=1, 1e6, if(issquare(s+=sigma(n)), print1(n", "))) \\ Charles R Greathouse IV, Feb 04 2013
CROSSREFS
Cf. A024916, A062407 (for the resulting squares).
Sequence in context: A249661 A249662 A249663 * A364080 A248988 A248989
KEYWORD
nonn,more
AUTHOR
Florian Luca (fluca(AT)matmor.unam.mx), Jul 11 2007
EXTENSIONS
a(10)-a(13) from Donovan Johnson, Dec 02 2009
a(14) from Donovan Johnson, Mar 17 2011
Name revised by Charles R Greathouse IV, Feb 04 2013
a(15)-a(20) from Giovanni Resta, Nov 22 2019
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 June 10 03:52 EDT 2024. Contains 373253 sequences. (Running on oeis4.)