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.

A130645 Nonnegative values x of solutions (x, y) to the Diophantine equation x^2+(x+439)^2 = y^2.

Original entry on oeis.org

0, 44, 1121, 1317, 1541, 7644, 8780, 10080, 45621, 52241, 59817, 266960, 305544, 349700, 1557017, 1781901, 2039261, 9076020, 10386740, 11886744, 52899981, 60539417, 69282081, 308324744, 352850640, 403806620, 1797049361, 2056565301, 2353558517, 10473972300
Offset: 1

Views

Author

Mohamed Bouhamida, Jun 20 2007

Keywords

Comments

Also values x of Pythagorean triples (x, x+439, y).
Corresponding values y of solutions (x, y) are in A159890.
For the generic case x^2+(x+p)^2 = y^2 with p = m^2-2 a (prime) number > 7 in A028871, see A118337.
lim_{n -> infinity} a(n)/a(n-3) = 3+2*sqrt(2).
lim_{n -> infinity} a(n)/a(n-1) = (443+42*sqrt(2))/439 for n mod 3 = {1, 2}.
lim_{n -> infinity} a(n)/a(n-1) = (450483+287918*sqrt(2))/439^2 for n mod 3 = 0.

Crossrefs

Cf. A159890, A028871, A118337, A118675, A118676, A001652, A156035 (decimal expansion of 3+2*sqrt(2)), A159891 (decimal expansion of (443+42*sqrt(2))/439), A159892 (decimal expansion of (450483+287918*sqrt(2))/439^2).

Programs

  • Mathematica
    LinearRecurrence[{1, 0, 6, -6, 0, -1, 1}, {0, 44, 1121, 1317, 1541, 7644, 8780}, 50] (* Vladimir Joseph Stephan Orlovsky, Feb 14 2012 *)
  • PARI
    {forstep(n=0, 100000000, [1, 3], if(issquare(2*n^2+878*n+192721), print1(n, ",")))}

Formula

a(n) = 6*a(n-3)-a(n-6)+878 for n > 6; a(1)=0, a(2)=44, a(3)=1121, a(4)=1317, a(5)=1541, a(6)=7644.
G.f.: x*(44+1077*x+196*x^2-40*x^3-359*x^4-40*x^5) / ((1-x)*(1-6*x^3+x^6)).
a(3*k+1) = 439*A001652(k) for k >= 0.

Extensions

Edited and two terms added by Klaus Brockhaus, Apr 30 2009