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.

A097730 Pell equation solutions (6*b(n))^2 - 37*a(n)^2 = -1 with b(n)=A097729(n), n >= 0.

Original entry on oeis.org

1, 145, 21169, 3090529, 451196065, 65871534961, 9616792908241, 1403985893068225, 204972323595052609, 29924555258984612689, 4368780095488158399985, 637811969386012141785121, 93116178750262284542227681, 13594324285568907531023456305
Offset: 0

Views

Author

Wolfdieter Lang, Aug 31 2004

Keywords

Examples

			(x,y) = (6,1), (882,145), (128766,21169), ... give the positive integer solutions to x^2 - 37*y^2 = -1.
		

Crossrefs

Cf. A097729 for S(n, 146).
Row 6 of array A188647.

Programs

  • GAP
    a:=[1,145];; for n in [3..20] do a[n]:=146*a[n-1]-a[n-2]; od; a; # G. C. Greubel, Aug 01 2019
  • Magma
    I:=[1,145]; [n le 2 select I[n] else 146*Self(n-1) - Self(n-2): n in [1..20]]; // G. C. Greubel, Aug 01 2019
    
  • Mathematica
    LinearRecurrence[{146, -1},{1, 145},12] (* Ray Chandler, Aug 12 2015 *)
  • PARI
    my(x='x+O('x^20)); Vec((1-x)/(1-146*x+x^2)) \\ G. C. Greubel, Aug 01 2019
    
  • Sage
    ((1-x)/(1-146*x+x^2)).series(x, 20).coefficients(x, sparse=False) # G. C. Greubel, Aug 01 2019
    

Formula

a(n) = S(n, 2*73) - S(n-1, 2*73) = T(2*n+1, sqrt(37))/sqrt(37), with Chebyshev polynomials of the 2nd and first kind. See A049310 for the triangle of S(n, x)= U(n, x/2) coefficients. S(-1, x) := 0 =: U(-1, x); and A053120 for the T-triangle.
a(n) = ((-1)^n)*S(2*n, 12*i) with the imaginary unit i and Chebyshev polynomials S(n, x) with coefficients shown in A049310.
G.f.: (1-x)/(1-146*x+x^2).
a(n) = 146*a(n-1) - a(n-2), n > 1; a(0)=1, a(1)=145. - Philippe Deléham, Nov 18 2008