A057089
Scaled Chebyshev U-polynomials evaluated at i*sqrt(6)/2. Generalized Fibonacci sequence.
Original entry on oeis.org
1, 6, 42, 288, 1980, 13608, 93528, 642816, 4418064, 30365280, 208700064, 1434392064, 9858552768, 67757668992, 465697330560, 3200729997312, 21998563967232, 151195763787264, 1039165966526976, 7142170381885440
Offset: 0
- Vincenzo Librandi, Table of n, a(n) for n = 0..200
- Martin Burtscher, Igor Szczyrba, and Rafał Szczyrba, Analytic Representations of the n-anacci Constants and Generalizations Thereof, Journal of Integer Sequences, Vol. 18 (2015), Article 15.4.5.
- A. F. Horadam, Special properties of the sequence W_n(a,b; p,q), Fib. Quart., 5.5 (1967), 424-434. Case n->n+1, a=0,b=1; p=6, q=6.
- Tanya Khovanova, Recursive Sequences
- Wolfdieter Lang, On polynomials related to powers of the generating function of Catalan's numbers, Fib. Quart. 38 (2000) 408-419. Eqs.(39) and (45),rhs, m=6.
- Index entries for sequences related to Chebyshev polynomials.
- Index entries for linear recurrences with constant coefficients, signature (6,6).
Cf.
A001076,
A006190,
A007482,
A015520,
A015521,
A015523,
A015524,
A015525,
A015528,
A015529,
A015530,
A015531,
A015532,
A015533,
A015534,
A015535,
A015536,
A015537,
A015440,
A015441,
A015443,
A015444,
A015445,
A015447,
A015548,
A030195,
A053404,
A057087,
A057088,
A083858,
A085939,
A090017,
A091914,
A099012,
A135030,
A135032,
A180222,
A180226,
A180250.
-
I:=[1,6]; [n le 2 select I[n] else 6*Self(n-1)+6*Self(n-2): n in [1..30]]; // Vincenzo Librandi, Nov 14 2011
-
Join[{a=0,b=1},Table[c=6*b+6*a;a=b;b=c,{n,100}]] (* Vladimir Joseph Stephan Orlovsky, Jan 16 2011 *)
LinearRecurrence[{6,6},{1,6},40] (* Harvey P. Dale, Nov 05 2011 *)
-
x='x+O('x^30); Vec(1/(1-6*x-6*x^2)) \\ G. C. Greubel, Jan 24 2018
-
[lucas_number1(n,6,-6) for n in range(1, 21)] # Zerinvary Lajos, Apr 24 2009
A135030
Generalized Fibonacci numbers: a(n) = 6*a(n-1) + 2*a(n-2).
Original entry on oeis.org
0, 1, 6, 38, 240, 1516, 9576, 60488, 382080, 2413456, 15244896, 96296288, 608267520, 3842197696, 24269721216, 153302722688, 968355778560, 6116740116736, 38637152257536, 244056393778688, 1541612667187200
Offset: 0
Cf.
A001076,
A006190,
A007482,
A015520,
A015521,
A015523,
A015524,
A015525,
A015528,
A015529,
A015530,
A015531,
A015532,
A015533,
A015534,
A015535,
A015536,
A015537,
A015440,
A015441,
A015443,
A015444,
A015445,
A015447,
A015548,
A030195,
A053404,
A057087,
A057088,
A083858,
A085939,
A090017,
A091914,
A099012,
A180222,
A180226,
A180250.
-
[n le 2 select n-1 else 6*Self(n-1) + 2*Self(n-2): n in [1..35]]; // Vincenzo Librandi, Sep 18 2016
-
A:= gfun:-rectoproc({a(0) = 0, a(1) = 1, a(n) = 2*(3*a(n-1) + a(n-2))},a(n),remember):
seq(A(n),n=1..30); # Robert Israel, Sep 16 2014
-
Join[{a=0,b=1},Table[c=6*b+2*a;a=b;b=c,{n,100}]] (* Vladimir Joseph Stephan Orlovsky, Jan 16 2011 *)
LinearRecurrence[{6,2},{0,1},30] (* or *) CoefficientList[Series[ -(x/(2x^2+6x-1)),{x,0,30}],x] (* Harvey P. Dale, Jun 20 2011 *)
-
a(n)=([0,1; 2,6]^n*[0;1])[1,1] \\ Charles R Greathouse IV, Oct 03 2016
-
[lucas_number1(n,6,-2) for n in range(0, 21)] # Zerinvary Lajos, Apr 24 2009
A015551
Expansion of x/(1 - 6*x - 5*x^2).
Original entry on oeis.org
0, 1, 6, 41, 276, 1861, 12546, 84581, 570216, 3844201, 25916286, 174718721, 1177893756, 7940956141, 53535205626, 360916014461, 2433172114896, 16403612761681, 110587537144566, 745543286675801, 5026197405777636
Offset: 0
Cf.
A001076,
A006190,
A007482,
A015520,
A015521,
A015523,
A015524,
A015525,
A015528,
A015529,
A015530,
A015531,
A015532,
A015533,
A015534,
A015535,
A015536,
A015537,
A015440,
A015441,
A015443,
A015444,
A015445,
A015447,
A015548,
A030195,
A053404,
A057087,
A057088,
A057089,
A083858,
A085939,
A090017,
A091914,
A099012,
A135030,
A135032,
A180222,
A180226,
A180250.
-
I:=[0,1]; [n le 2 select I[n] else 6*Self(n-1)+5*Self(n-2): n in [1..30]]; // Vincenzo Librandi, Nov 14 2011
-
Join[{a=0,b=1},Table[c=6*b+5*a;a=b;b=c,{n,100}]] (* Vladimir Joseph Stephan Orlovsky, Jan 16 2011 *)
CoefficientList[Series[x/(1-6x-5x^2),{x,0,20}],x] (* or *) LinearRecurrence[ {6,5},{0,1},30] (* Harvey P. Dale, Oct 30 2017 *)
-
a(n)=([0,1; 5,6]^n*[0;1])[1,1] \\ Charles R Greathouse IV, Oct 03 2016
-
[lucas_number1(n,6,-5) for n in range(0, 21)] # Zerinvary Lajos, Apr 24 2009
A208459
Triangle T_x = T(n,k) given by (0, 1/x, 1-1/x, 0, 0, 0, 0, 0, 0, 0, ...) DELTA (x, 1/x-1, -1/x, 0, 0, 0, 0, 0, 0, 0, ...) where DELTA is the operator defined in A084938, for x = 0.
Original entry on oeis.org
1, 0, 0, 0, 1, 1, 0, 1, 0, -1, 0, 1, 0, 1, 2, 0, 1, 0, 2, 0, -3, 0, 1, 0, 3, -1, 0, 5, 0, 1, 0, 4, -2, 3, 2, -8, 0, 1, 0, 5, -3, 7, -2, -5, 13, 0, 1, 0, 6, -4, 12, -8, 2, 12, -21, 0, 1, 0, 7, -5, 18, -16, 15, 3, -25, 34
Offset: 0
Triangle begins :
1
0, 0
0, 1, 1
0, 1, 0, -1
0, 1, 0, 1, 2
0, 1, 0, 2, 0, -3
0, 1, 0, 3, -1, 0, 5
0, 1, 0, 4, -2, 3, 2, -8
0, 1, 0, 5, -3, 7, -2, -5, 13
0, 1, 0, 6, -4, 12, -8, 2, 12, -21
0, 1, 0, 7, -5, 18, -16, 15, 3, -25, 34
Showing 1-4 of 4 results.
Comments