login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A176369 y-values in the solution to x^2 - 65*y^2 = 1. 2
0, 16, 4128, 1065008, 274767936, 70889062480, 18289103351904, 4718517775728752, 1217359297034666112, 314073980117168128144, 81029869510932342395040, 20905392259840427169792176 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
The corresponding values of x of this Pell equation are in A176368.
LINKS
FORMULA
a(n) = 258*a(n-1) - a(n-2) with a(0)=0, a(1)=16.
G.f.: 16*x^2/(1-258*x+x^2).
MAPLE
seq(coeff(series(16*x^2/(1-258*x+x^2), x, n+1), x, n), n = 1..15); # G. C. Greubel, Dec 08 2019
MATHEMATICA
LinearRecurrence[{258, -1}, {0, 16}, 20] (* Harvey P. Dale, Aug 20 2011 *)
PROG
(Magma) I:=[0, 16]; [n le 2 select I[n] else 258*Self(n-1)-Self(n-2): n in [1..20]];
(PARI) my(x='x+O('x^15)); concat([0], Vec(16*x^2/(1-258*x+x^2))) \\ G. C. Greubel, Dec 08 2019
(Sage)
def A176369_list(prec):
P.<x> = PowerSeriesRing(ZZ, prec)
return P( 16*x^2/(1-258*x+x^2) ).list()
a=A176369_list(15); a[1:] # G. C. Greubel, Dec 08 2019
(GAP) a:=[1, 16];; for n in [3..15] do a[n]:=258*a[n-1]-a[n-2]; od; a; # G. C. Greubel, Dec 08 2019
CROSSREFS
Cf. A176368.
Sequence in context: A139296 A268757 A272358 * A090045 A201241 A123280
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Apr 16 2010
EXTENSIONS
Partially corrected and edited by Michael B. Porter and N. J. A. Sloane, Jun 22 2010
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 12:14 EDT 2024. Contains 371792 sequences. (Running on oeis4.)