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!)
A180259 Squares which are the sum of consecutive squares starting with 25^2. 3
625, 33124, 38025, 127449, 64529089, 81180100, 15884821225, 3370675683600 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
That is, terms are squares of the form sum_{i=25..m} i^2 = (m-24) *(2*m^2+51*m+1225) / 6 for some m. Known solutions refer to m = 25, 48, 50, 73, 578, 624, 3625 and 21624, and no further in the range m <= 70000000.
This sequence is complete. See A180442 and A184763.
LINKS
EXAMPLE
38025 is in the sequence because 38025 = 195^2 = 25^2 + 26^2 + ... + 50^2.
MATHEMATICA
Select[Accumulate[Range[25, 22000]^2], IntegerQ[Sqrt[#]] &] (* Harvey P. Dale, Aug 10 2023 *)
PROG
(PARI) for(n=26, 9999999, t=n*(n+1)*(2*n+1)/6-4900; if(issquare(t), print1(t, ", ")))
CROSSREFS
Sequence in context: A017044 A080175 A017128 * A017224 A106321 A017332
KEYWORD
nonn,fini,full
AUTHOR
Zhining Yang, Jan 17 2011
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 13 00:07 EDT 2024. Contains 372497 sequences. (Running on oeis4.)