cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-3 of 3 results.

A180442 Numbers n such that a sum of two or more consecutive squares beginning with n^2 is a square.

Original entry on oeis.org

1, 3, 7, 9, 11, 13, 15, 17, 18, 20, 21, 22, 25, 27, 28, 30, 32, 38, 44, 50, 52, 55, 58, 60, 64, 65, 67, 73, 74, 76, 83, 87, 91, 103, 104, 106, 112, 115, 117, 119, 121, 124, 128, 129, 131, 132, 137, 140, 142, 146, 158, 168, 170, 172, 175, 178, 181, 183, 192, 193, 197, 199, 200, 204
Offset: 1

Views

Author

Zhining Yang, Jan 19 2011

Keywords

Comments

That is, numbers n such that Sum_{i=n..k} i^2 is a square for some k > n.
The paper by Bremner, Stroeker, and Tzanakis describes how they found all n <= 100 by solving elliptic curves. Their solutions are the same as the terms in this sequence. They also show that there are only a finite number of sums of squares beginning with n^2 that sum to a square. For example, starting with 3^2, there are only 3 ways to sum consecutive squares to produce a square: 3^2 + 4^2, 3^2 + ... + 580^2, and 3^2 + ... + 963^2. See A184762, A184763, A184885, and A184886 for more results from their paper.
This sequence is more difficult than A001032, which has the possible lengths of the sequences of consecutive squares that sum to a square. Be careful adding terms to this sequence; a simple search may miss some terms. An elliptic curve needs to be solved for each number.
It is conjectured that the sequence continues 103, 104, 106, 112, 115, 117, 119, 121, 124, 128, 129, 131, 132, 137, 140, 142, 146, 158, 168, 170, 172, 175, 178, 181, 183, 192, 193, 197, 199, 200. - Jean-François Alcover, Sep 17 2013. Conjecture confirmed (see the Schoenfield link below). - Jon E. Schoenfield, Nov 22 2013

Examples

			30 is in the sequence because 30^2 + 31^2 + 32^2 + ... + 197^2 + 198^2 = 1612^2.
		

Crossrefs

Programs

Formula

Numbers n such that A075404(n) > 0.

Extensions

Example simplified by Jon E. Schoenfield, Sep 18 2013
More terms from Jon E. Schoenfield, Nov 22 2013

A180259 Squares which are the sum of consecutive squares starting with 25^2.

Original entry on oeis.org

625, 33124, 38025, 127449, 64529089, 81180100, 15884821225, 3370675683600
Offset: 1

Views

Author

Zhining Yang, Jan 17 2011

Keywords

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.

Examples

			38025 is in the sequence because 38025 = 195^2 = 25^2 + 26^2 + ... + 50^2.
		

Crossrefs

Programs

  • Mathematica
    Select[Accumulate[Range[25, 22000]^2], IntegerQ[Sqrt[#]] &] (* Harvey P. Dale, Aug 10 2023 *)
  • PARI
    for(n=26,9999999,t=n*(n+1)*(2*n+1)/6-4900;if(issquare(t),print1(t,",")))

A180465 Squares which are a sum of consecutive squares starting with 38^2.

Original entry on oeis.org

1444, 20449, 281961, 14212900, 107827456, 564343507984
Offset: 1

Views

Author

Zhining Yang, Jan 19 2011

Keywords

Comments

This sequence is complete. See A180442 and A184763.

Crossrefs

Programs

  • PARI
    for(n=38, 9999999, t=n*(n+1)*(2*n+1)/6-17575; if(issquare(t), print1(t, ", ")))
Showing 1-3 of 3 results.