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.

A077250 Bisection (odd part) of Chebyshev sequence with Diophantine property.

Original entry on oeis.org

11, 103, 1019, 10087, 99851, 988423, 9784379, 96855367, 958769291, 9490837543, 93949606139, 930005223847, 9206102632331, 91131021099463, 902104108362299, 8929910062523527, 88396996516872971, 875040055106206183, 8662003554545188859, 85744995490345682407
Offset: 0

Views

Author

Wolfdieter Lang, Nov 08 2002

Keywords

Comments

a(n)^2 - 24*b(n)^2 = 25, with the companion sequence b(n) = A077249(n).
The even part is A077409(n) with Diophantine companion A077251(n).

Examples

			103 = a(1) = sqrt(24*A077249(1)^2 + 25) = sqrt(24*21^2 + 25) = sqrt(10609) = 103.
		

Programs

Formula

a(n) = 10*a(n-1)- a(n-2), a(-1)=7, a(0)=11.
a(n) = 2*T(n+1, 5)+T(n, 5), with T(n, x) Chebyshev's polynomials of the first kind, A053120. T(n, 5)= A001079(n).
a(n) = sqrt(25 + 24*A077249(n)^2).
G.f.: (11-7*x)/(1-10*x+x^2).