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.

A097783 Chebyshev polynomials S(n,11) + S(n-1,11) with Diophantine property.

Original entry on oeis.org

1, 12, 131, 1429, 15588, 170039, 1854841, 20233212, 220710491, 2407582189, 26262693588, 286482047279, 3125039826481, 34088956044012, 371853476657651, 4056299287190149, 44247438682433988, 482665526219583719, 5265073349732986921, 57433141320843272412
Offset: 0

Views

Author

Wolfdieter Lang, Aug 31 2004

Keywords

Comments

All positive integer solutions of Pell equation (3*a(n))^2 - 13*b(n)^2 = -4 together with b(n)=A078922(n+1), n>=0.

Examples

			All positive solutions to the Pell equation x^2 - 13*y^2 = -4 are (3=3*1,1), (36=3*12,10), (393=3*131,109), (4287=3*1429,1189 ), ...
		

Crossrefs

Programs

  • Magma
    I:=[1,12]; [n le 2 select I[n] else 11*Self(n-1)-Self(n-2): n in [1..30]]; // Vincenzo Librandi, Mar 22 2015
  • Mathematica
    CoefficientList[Series[(1 + x) / (1 - 11 x + x^2), {x, 0, 33}], x] (* Vincenzo Librandi, Mar 22 2015 *)
  • PARI
    Vec((1+x)/(1-11*x+x^2) + O(x^30)) \\ Michel Marcus, Mar 22 2015
    
  • Sage
    [(lucas_number2(n,11,1)-lucas_number2(n-1,11,1))/9 for n in range(1, 19)] # Zerinvary Lajos, Nov 10 2009
    

Formula

a(n) = S(n, 11) + S(n-1, 11) = S(2*n, sqrt(13)), with S(n, x)=U(n, x/2) Chebyshev's polynomials of the 2nd kind, A049310. S(-1, x) = 0 = U(-1, x).
a(n) = (-2/3)*i*((-1)^n)*T(2*n+1, 3*i/2) with the imaginary unit i and Chebyshev's polynomials of the first kind. See the T-triangle A053120.
G.f.: (1+x)/(1-11*x+x^2).
a(n) = L(n,-11)*(-1)^n, where L is defined as in A108299; see also A078922 for L(n,+11). - Reinhard Zumkeller, Jun 01 2005
a(n) = 11*a(n-1) - a(n-2) with a(0)=1 and a(1)=12. - Philippe Deléham, Nov 17 2008
From Peter Bala, Mar 22 2015: (Start)
The aerated sequence (b(n))n>=1 = [1, 0, 12, 0, 131, 0, 1429, 0, ...] is a fourth-order linear divisibility sequence; that is, if n | m then b(n) | b(m). It is the case P1 = 0, P2 = -9, Q = -1 of the 3-parameter family of divisibility sequences found by Williams and Guy. See A100047 for the connection with Chebyshev polynomials.
b(n) = 1/2*( (-1)^n - 1 )*F(n,3) + 1/3*( 1 + (-1)^(n+1) )*F(n+1,3), where F(n,x) is the n-th Fibonacci polynomial. The o.g.f. is x*(1 + x^2)/(1 - 11*x^2 + x^4).
Exp( Sum_{n >= 1} 6*b(n)*x^n/n ) = 1 + Sum_{n >= 1} 6*A006190(n)*x^n.
Exp( Sum_{n >= 1} (-6)*b(n)*x^n/n ) = 1 + Sum_{n >= 1} 6*A006190(n)*(-x)^n. Cf. A002315, A004146, A113224 and A192425. (End)
a(n) = A006497(2n+1)/3. - Adam Mohamed, Aug 22 2024