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-2 of 2 results.

A237262 Values of x in the solutions to x^2 - 8*x*y + y^2 + 11 = 0, where 0 < x < y.

Original entry on oeis.org

1, 2, 6, 15, 47, 118, 370, 929, 2913, 7314, 22934, 57583, 180559, 453350, 1421538, 3569217, 11191745, 28100386, 88112422, 221233871, 693707631, 1741770582, 5461548626, 13712930785, 42998681377, 107961675698, 338527902390, 849980474799, 2665224537743
Offset: 1

Views

Author

Colin Barker, Feb 05 2014

Keywords

Comments

The corresponding values of y are given by a(n+2).
Also values of y in the solutions to the negative Pell equation x^2 - 15*y^2 = -11. - Colin Barker, Jan 25 2017

Examples

			6 is a term because (x, y) = (6, 47) is a solution to x^2 - 8xy + y^2 + 11 = 0.
		

Crossrefs

For first and second differences see A322780, A199336.

Programs

  • Mathematica
    LinearRecurrence[{0,8,0,-1},{1,2,6,15},30] (* Harvey P. Dale, Sep 06 2020 *)
  • PARI
    Vec(-x*(x-1)*(x^2+3*x+1)/(x^4-8*x^2+1) + O(x^100))

Formula

G.f.: -x*(x-1)*(x^2 + 3*x + 1) / (x^4 - 8*x^2 + 1).
a(n) = 8*a(n-2) - a(n-4) for n > 4.
a(n) = (11*a(n-1) - 4*a(n-2))/3 if n is odd; a(n) = (11*a(n-1) - 3*a(n-2))/4 if n is even. - R. J. Mathar, Jun 18 2014

A199336 x-values in the solution to 15*x^2 - 14 = y^2.

Original entry on oeis.org

1, 3, 5, 23, 39, 181, 307, 1425, 2417, 11219, 19029, 88327, 149815, 695397, 1179491, 5474849, 9286113, 43103395, 73109413, 339352311, 575589191, 2671715093, 4531604115, 21034368433, 35677243729, 165603232371, 280886345717, 1303791490535, 2211413522007
Offset: 1

Views

Author

Sture Sjöstedt, Nov 05 2011

Keywords

Comments

When are both n+1 and 15*n+1 perfect squares? This problem gives the equation 15*x^2-14 = y^2.
Values of x (or y) in the solutions to x^2 - 8xy + y^2 + 14 = 0. - Colin Barker, Feb 05 2014

Crossrefs

Essentially the second differences of A237262. Cf. also A322780.

Programs

  • Magma
    m:=29; R:=PowerSeriesRing(Integers(), m); Coefficients(R!((1-x)*(1+4*x+x^2)/(1-8*x^2+x^4))); // Bruno Berselli, Nov 08 2011
  • Mathematica
    LinearRecurrence[{0, 8, 0, -1}, {1, 3, 5, 23}, 50] (* T. D. Noe, Nov 07 2011 *)

Formula

a(n+4) = 8*a(n+2) - a(n), a(1)=1, a(2)=3, a(3)=5, a(4)=23.
G.f.: x*(1-x)*(1+4*x+x^2)/(1-8*x^2+x^4). - Bruno Berselli, Nov 08 2011

Extensions

More terms from T. D. Noe, Nov 07 2011
Showing 1-2 of 2 results.