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!)
A098298 Member r=13 of the family of Chebyshev sequences S_r(n) defined in A092184. 1
0, 1, 13, 144, 1573, 17161, 187200, 2042041, 22275253, 242985744, 2650567933, 28913261521, 315395308800, 3440435135281, 37529391179293, 409382867836944, 4465682155027093, 48713120837461081, 531378647057044800, 5796451996790031721, 63229593317633304133 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
S. Barbero, U. Cerruti, and N. Murru, On polynomial solutions of the Diophantine equation (x + y - 1)^2 = wxy, Rendiconti Sem. Mat. Univ. Pol. Torino (2020) Vol. 78, No. 1, 5-12.
FORMULA
a(n) = 2*(T(n, 11/2) - 1)/9 with twice Chebyshev's polynomials of the first kind evaluated at x=11/2: 2*T(n, 11/2) = A057076(n) = ((11 + sqrt(117))^n + (11 - sqrt(117))^n)/2^n.
a(n) = 11*a(n-1) - a(n-2) + 2, n >= 2, a(0)=0, a(1)=1.
a(n) = 12*a(n-1) - 12*a(n-2) + a(n-3), n >= 3, a(0)=0, a(1)=1, a(2)=13.
G.f.: x*(1+x)/((1-x)*(1-11*x+x^2)) = x*(1+x)/(1-12*x+12*x^2-x^3) (from the Stephan link, see A092184).
MATHEMATICA
LinearRecurrence[{12, -12, 1}, {0, 1, 13}, 30] (* Harvey P. Dale, May 11 2012 *)
RecurrenceTable[{a[0] == 0, a[1] == 1, a[n] == 11 a[n-1] - a[n-2] + 2}, a, {n, 30}] (* Vincenzo Librandi, Mar 06 2016 *)
PROG
(PARI) concat(0, Vec(x*(1+x)/((1-x)*(1-11*x+x^2)) + O(x^25))) \\ Colin Barker, Mar 06 2016
(Magma) [n le 2 select n-1 else 11*Self(n-1)- Self(n-2) + 2: n in [1..30]]; // Vincenzo Librandi, Mar 06 2016
(Sage) (x*(1+x)/((1-x)*(1-11*x+x^2))).series(x, 30).coefficients(x, sparse=False) # G. C. Greubel, May 24 2019
(GAP) a:=[0, 1, 13];; for n in [4..30] do a[n]:=12*a[n-1]-12*a[n-2]+ a[n-3]; od; a; # G. C. Greubel, May 24 2019
CROSSREFS
Sequence in context: A015672 A234601 A164825 * A045725 A072351 A134489
KEYWORD
nonn,easy
AUTHOR
Wolfdieter Lang, Oct 18 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 March 28 20:05 EDT 2024. Contains 371254 sequences. (Running on oeis4.)