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!)
A176367 y-values in the solution to x^2 - 62*y^2 = 1. 2
0, 8, 1008, 127000, 16000992, 2015997992, 253999746000, 32001951998008, 4031991952003008, 507998984000381000, 64003839992096002992, 8063975840020095995992, 1015996952002539999492000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
The corresponding values of x of this Pell equation are in A174763.
LINKS
FORMULA
a(n) = 126*a(n-1) - a(n-2) with a(1)=0, a(2)=8.
G.f.: 8*x^2/(1-126*x+x^2).
MAPLE
seq(coeff(series(8*x^2/(1-126*x+x^2), x, n+1), x, n), n = 0..20); # G. C. Greubel, Dec 07 2019
MATHEMATICA
LinearRecurrence[{126, -1}, {0, 8}, 20]
PROG
(Magma) I:=[0, 8]; [n le 2 select I[n] else 126*Self(n-1)-Self(n-2): n in [1..20]];
(PARI) my(x='x+O('x^20)); concat([0], Vec(8*x^2/(1-126*x+x^2))) \\ G. C. Greubel, Dec 07 2019
(Sage)
def A176367_list(prec):
P.<x> = PowerSeriesRing(ZZ, prec)
return P( 8*x^2/(1-126*x+x^2) ).list()
a=A176367_list(20); a[1:] # G. C. Greubel, Dec 07 2019
(GAP) a:=[0, 8];; for n in [3..20] do a[n]:=126*a[n-1]-a[n-2]; od; a; # G. C. Greubel, Dec 07 2019
CROSSREFS
Cf. A174763.
Sequence in context: A019545 A046242 A260028 * A298669 A007117 A291831
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Apr 16 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 May 3 07:46 EDT 2024. Contains 372206 sequences. (Running on oeis4.)