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!)
A098262 First differences of Chebyshev polynomials S(n,627)=A098260(n) with Diophantine property. 4
1, 626, 392501, 246097501, 154302740626, 96747572275001, 60660573513685001, 38034082845508220626, 23847309283560140647501, 14952224886709362677762501, 9375021156657486838816440626 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
(25*b(n))^2 - 629*a(n)^2 = -4 with b(n)=A098261(n) give all positive solutions of this Pell equation.
LINKS
Tanya Khovanova, Recursive Sequences
Giovanni Lucca, Integer Sequences and Circle Chains Inside a Hyperbola, Forum Geometricorum (2019) Vol. 19, 11-16.
FORMULA
a(n) = ((-1)^n)*S(2*n, 25*i) with the imaginary unit i and the S(n, x) = U(n, x/2) Chebyshev polynomials.
G.f.: (1-x)/(1-627*x+x^2).
a(n) = S(n, 627) - S(n-1, 627) = T(2*n+1, sqrt(629)/2)/(sqrt(629)/2), with S(n, x) = U(n, x/2) Chebyshev's polynomials of the second kind, A049310. S(-1, x) = 0 = U(-1, x) and T(n, x) Chebyshev's polynomials of the first kind, A053120.
a(n) = 627*a(n-1) - a(n-2), n > 1; a(0)=1, a(1)=626. - Philippe Deléham, Nov 18 2008
EXAMPLE
All positive solutions of Pell equation x^2 - 629*y^2 = -4 are (25=25*1,1), (15700=25*628,626), (9843875=25*393755,392501), (6172093925=25*246883757,246097501), ...
MATHEMATICA
LinearRecurrence[{627, -1}, {1, 626}, 20] (* G. C. Greubel, Aug 01 2019 *)
PROG
(PARI) my(x='x+O('x^20)); Vec((1-x)/(1-627*x+x^2)) \\ G. C. Greubel, Aug 01 2019
(Magma) I:=[1, 626]; [n le 2 select I[n] else 627*Self(n-1) - Self(n-2): n in [1..20]]; // G. C. Greubel, Aug 01 2019
(Sage) ((1-x)/(1-627*x+x^2)).series(x, 20).coefficients(x, sparse=False) # G. C. Greubel, Aug 01 2019
(GAP) a:=[1, 626];; for n in [3..20] do a[n]:=627*a[n-1]-a[n-2]; od; a; # G. C. Greubel, Aug 01 2019
CROSSREFS
Sequence in context: A158383 A031728 A031638 * A031523 A345523 A345777
KEYWORD
nonn,easy
AUTHOR
Wolfdieter Lang, Sep 10 2004
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 05:19 EDT 2024. Contains 371782 sequences. (Running on oeis4.)