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.

A174766 y-values in the solution to x^2 - 22*y^2 = 1.

Original entry on oeis.org

0, 42, 16548, 6519870, 2568812232, 1012105499538, 398766998005740, 157113185108762022, 61902196165854230928, 24389308176161458223610, 9609325519211448685871412, 3786049865261134620775112718
Offset: 1

Views

Author

Vincenzo Librandi, Apr 14 2010

Keywords

Comments

The corresponding values of x of this Pell equation are in A114050.

Crossrefs

Cf. A114050.

Programs

  • Magma
    I:=[0, 42]; [n le 2 select I[n] else 394*Self(n-1)-Self(n-2): n in [1..20]];
  • Mathematica
    LinearRecurrence[{394,-1},{0,42},30]

Formula

a(n) = 394*a(n-1)-a(n-2) with a(1)=0, a(2)=42.
G.f.: 42*x^2/(1-394*x+x^2).