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.

A226695 Pell equation solutions (32*b(n))^2 - 41*(5*a(n))^2 = -1 with b(n) := A226694(n), n>=0.

Original entry on oeis.org

1, 4097, 16789505, 68803387393, 281956264747009, 1155456704129855489, 4735061291567883046913, 19404280017388480596393985, 79518734776196701916139503617, 325867755708574067063859089428481, 1335405983375001750630992632338411521
Offset: 0

Views

Author

Wolfdieter Lang, Jun 20 2013

Keywords

Examples

			Pell n=0: 32^2 - 41*5^2 = -1.
Pell n=1: (32*4099)^2 - 41*(5*4097)^2 = -1.
		

Crossrefs

Programs

  • Mathematica
    LinearRecurrence[{4098,-1},{1,4097},20] (* Harvey P. Dale, May 17 2015 *)

Formula

a(n) = S(n,4098)- S(n-1,4098), n>=0, with the Chebyshev S-polynomials (A049310).
O.g.f.: (1-x)/(1 - 4098*x + x^2).
a(n) = 4098*a(n-1) - a(n-2), n >= 1, a(-1) = 1, a(0) =1.