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.

Showing 1-10 of 15 results. Next

A014445 Even Fibonacci numbers; or, Fibonacci(3*n).

Original entry on oeis.org

0, 2, 8, 34, 144, 610, 2584, 10946, 46368, 196418, 832040, 3524578, 14930352, 63245986, 267914296, 1134903170, 4807526976, 20365011074, 86267571272, 365435296162, 1548008755920, 6557470319842, 27777890035288, 117669030460994, 498454011879264, 2111485077978050
Offset: 0

Views

Author

Keywords

Comments

a(n) = 3^n*b(n;2/3) = -b(n;-2), but we have 3^n*a(n;2/3) = F(3n+1) = A033887 and a(n;-2) = F(3n-1) = A015448, where a(n;d) and b(n;d), n=0,1,...,d, denote the so-called delta-Fibonacci numbers (the argument "d" of a(n;d) and b(n;d) is abbreviation of the symbol "delta") defined by the following equivalent relations: (1 + d*((sqrt(5) - 1)/2))^n = a(n;d) + b(n;d)*((sqrt(5) - 1)/2) equiv. a(0;d)=1, b(0;d)=0, a(n+1;d) = a(n;d) + d*b(n;d), b(n+1;d) = d*a(n;d) + (1-d)b(n;d) equiv. a(0;d)=a(1;d)=1, b(0;1)=0, b(1;d)=d, and x(n+2;d) + (d-2)*x(n+1;d) + (1-d-d^2)*x(n;d) = 0 for every n=0,1,...,d, and x=a,b equiv. a(n;d) = Sum_{k=0..n} C(n,k)*F(k-1)*(-d)^k, and b(n;d) = Sum_{k=0..n} C(n,k)*(-1)^(k-1)*F(k)*d^k equiv. a(n;d) = Sum_{k=0..n} C(n,k)*F(k+1)*(1-d)^(n-k)*d^k, and b(n;d) = Sum_{k=1..n} C(n;k)*F(k)*(1-d)^(n-k)*d^k. The sequences a(n;d) and b(n;d) for special values d are connected with many known sequences: A000045, A001519, A001906, A015448, A020699, A033887, A033889, A074872, A081567, A081568, A081569, A081574, A081575, A163073 (see also the papers of Witula et al.). - Roman Witula, Jul 12 2012
For any odd k, Fibonacci(k*n) = sqrt(Fibonacci((k-1)*n) * Fibonacci((k+1)*n) + Fibonacci(n)^2). - Gary Detlefs, Dec 28 2012
The ratio of consecutive terms approaches the continued fraction 4 + 1/(4 + 1/(4 +...)) = A098317. - Hal M. Switkay, Jul 05 2020

Examples

			G.f. = 2*x + 8*x^2 + 34*x^3 + 144*x^4 + 610*x^5 + 2584*x^6 + 10946*x^7 + ...
		

References

  • Arthur T. Benjamin and Jennifer J. Quinn,, Proofs that really count: the art of combinatorial proof, M.A.A., 2003, id. 232.

Crossrefs

Programs

Formula

a(n) = Sum_{k=0..n} binomial(n, k)*F(k)*2^k. - Benoit Cloitre, Oct 25 2003
From Lekraj Beedassy, Jun 11 2004: (Start)
a(n) = 4*a(n-1) + a(n-2), with a(-1) = 2, a(0) = 0.
a(n) = 2*A001076(n).
a(n) = (F(n+1))^3 + (F(n))^3 - (F(n-1))^3. (End)
a(n) = Sum_{k=0..floor((n-1)/2)} C(n, 2*k+1)*5^k*2^(n-2*k). - Mario Catalani (mario.catalani(AT)unito.it), Jul 22 2004
a(n) = Sum_{k=0..n} F(n+k)*binomial(n, k). - Benoit Cloitre, May 15 2005
O.g.f.: 2*x/(1 - 4*x - x^2). - R. J. Mathar, Mar 06 2008
a(n) = second binomial transform of (2,4,10,20,50,100,250). This is 2* (1,2,5,10,25,50,125) or 5^n (offset 0): *2 for the odd numbers or *4 for the even. The sequences are interpolated. Also a(n) = 2*((2+sqrt(5))^n - (2-sqrt(5))^n)/sqrt(20). - Al Hakanson (hawkuu(AT)gmail.com), May 02 2009
a(n) = 3*F(n-1)*F(n)*F(n+1) + 2*F(n)^3, F(n)=A000045(n). - Gary Detlefs, Dec 23 2010
a(n) = (-1)^n*3*F(n) + 5*F(n)^3, n >= 0. See the D. Jennings formula given in a comment on A111125, where also the reference is given. - Wolfdieter Lang, Aug 31 2012
With L(n) a Lucas number, F(3*n) = F(n)*(L(2*n) + (-1)^n) = (L(3*n+1) + L(3*n-1))/5 starting at n=1. - J. M. Bergot, Oct 25 2012
a(n) = sqrt(Fibonacci(2*n)*Fibonacci(4*n) + Fibonacci(n)^2). - Gary Detlefs, Dec 28 2012
For n > 0, a(n) = 5*F(n-1)*F(n)*F(n+1) - 2*F(n)*(-1)^n. - J. M. Bergot, Dec 10 2015
a(n) = -(-1)^n * a(-n) for all n in Z. - Michael Somos, Nov 15 2018
a(n) = (5*Fibonacci(n)^3 + Fibonacci(n)*Lucas(n)^2)/4 (Ferns, 1967). - Amiram Eldar, Feb 06 2022
a(n) = 2*i^(n-1)*S(n-1,-4*i), with i = sqrt(-1), and the Chebyshev S-polynomials (see A049310) with S(-1, x) = 0. From the simplified trisection formula. - Gary Detlefs and Wolfdieter Lang, Mar 04 2023
E.g.f.: 2*exp(2*x)*sinh(sqrt(5)*x)/sqrt(5). - Stefano Spezia, Jun 03 2024
a(n) = 2*F(n) + 3*Sum_{k=0..n-1} F(3*k)*F(n-k). - Yomna Bakr and Greg Dresden, Jun 10 2024

A081016 a(n) = (Lucas(4*n+3) + 1)/5, or Fibonacci(2*n+1)*Fibonacci(2*n+2), or A081015(n)/5.

Original entry on oeis.org

1, 6, 40, 273, 1870, 12816, 87841, 602070, 4126648, 28284465, 193864606, 1328767776, 9107509825, 62423800998, 427859097160, 2932589879121, 20100270056686, 137769300517680, 944284833567073, 6472224534451830
Offset: 0

Views

Author

R. K. Guy, Mar 01 2003

Keywords

Comments

a(n-1) is, together with b(n) := A089508(n), n >= 1, the solution to a binomial problem; see A089508.
Numbers k such that 1 - 2*k + 5*k^2 is a square. - Artur Jasinski, Oct 26 2008
Also solution y of Diophantine equation x^2 + 4*y^2 = h^2 for which x = y-1. - Carmine Suriano, Jun 23 2010

References

  • Hugh C. Williams, Edouard Lucas and Primality Testing, John Wiley and Sons, 1998, p. 75.
  • A. T. Benjamin and J. J. Quinn, Proofs that really count: the art of combinatorial proof, M.A.A. 2003, id. 26.

Crossrefs

Cf. A000045 (Fibonacci numbers), A000032 (Lucas numbers), A081015.
Partial sums of A033889. Bisection of A001654. Equals A003482 + 1.

Programs

  • GAP
    List([0..30], n-> (Lucas(1,-1,4*n+3)[2] +1)/5 ); # G. C. Greubel, Jul 13 2019
  • Magma
    [(Lucas(4*n+3) +1)/5: n in [0..30]]; // G. C. Greubel, Dec 18 2017
    
  • Maple
    luc := proc(n) option remember: if n=0 then RETURN(2) fi: if n=1 then RETURN(1) fi: luc(n-1)+luc(n-2): end: for n from 0 to 25 do printf(`%d,`,(luc(4*n+3)+1)/5) od: # James Sellers, Mar 03 2003
  • Mathematica
    LinearRecurrence[{8,-8,1}, {1,6,40}, 30] (* Bruno Berselli, Aug 31 2017 *)
  • PARI
    a(n)=([0,1,0; 0,0,1; 1,-8,8]^n*[1;6;40])[1,1] \\ Charles R Greathouse IV, Sep 28 2015
    
  • PARI
    first(n) = Vec((1-2*x)/((1-x)*(1-7*x+x^2)) + O(x^n)) \\ Iain Fox, Dec 19 2017
    
  • Sage
    [(lucas_number2(4*n+3,1,-1) +1)/5 for n in (0..30)] # G. C. Greubel, Jul 13 2019
    

Formula

a(n) = 8*a(n-1) - 8*a(n-2) + a(n-3).
G.f.: (1 - 2*x)/((1 - x)*(1 - 7*x + x^2)).
a(n) = F(1) + F(5) + F(9) +...+ F(4*n+1) = F(2*n)*F(2*n+3) + 1, where F(j) = Fibonacci(j).
a(n) = 7*a(n-1) - a(n-2) - 1, n >= 2. - R. J. Mathar, Nov 07 2015

A103134 a(n) = Fibonacci(6n+4).

Original entry on oeis.org

3, 55, 987, 17711, 317811, 5702887, 102334155, 1836311903, 32951280099, 591286729879, 10610209857723, 190392490709135, 3416454622906707, 61305790721611591, 1100087778366101931, 19740274219868223167, 354224848179261915075, 6356306993006846248183
Offset: 0

Views

Author

Creighton Dement, Jan 24 2005

Keywords

Comments

Gives those numbers which are Fibonacci numbers in A103135.
Generally, for any sequence where a(0)= Fibonacci(p), a(1) = F(p+q) and Lucas(q)*a(1) +- a(0) = F(p+2q), then a(n) = L(q)*a(n-1) +- a(n-2) generates the following Fibonacci sequence: a(n) = F(q(n)+p). So for this sequence, a(n) = 18*a(n-1) - a(n-2) = F(6n+4): q=6, because 18 is the 6th Lucas number (L(0) = 2, L(1)=1); F(4)=3, F(10)=55 and F(16)=987 (F(0)=0 and F(1)=1). See Lucas sequence A000032. This is a special case where a(0) and a(1) are increasing Fibonacci numbers and Lucas(m)*a(1) +- a(0) is another Fibonacci. - Bob Selcoe, Jul 08 2013
a(n) = x + y where x and y are solutions to x^2 = 5*y^2 - 1. (See related sequences with formula below.) - Richard R. Forberg, Sep 05 2013

Crossrefs

Programs

Formula

G.f.: (x+3)/(x^2-18*x+1).
a(n) = 18*a(n-1) - a(n-2) for n>1; a(0)=3, a(1)=55. - Philippe Deléham, Nov 17 2008
a(n) = A007805(n) + A075796(n), as follows from comment above. - Richard R. Forberg, Sep 05 2013
a(n) = ((15-7*sqrt(5)+(9+4*sqrt(5))^(2*n)*(15+7*sqrt(5))))/(10*(9+4*sqrt(5))^n). - Colin Barker, Jan 24 2016
a(n) = S(3*n+1, 3) = 3*S(n,18) + S(n-1,18), with the Chebyshev S polynomials (A049310), S(-1, x) = 0, and S(n, 18) = A049660(n+1). - Wolfdieter Lang, May 08 2023

Extensions

Edited by N. J. A. Sloane, Aug 10 2010

A238731 Riordan array ((1-2*x)/(1-3*x+x^2), x/(1-3*x+x^2)).

Original entry on oeis.org

1, 1, 1, 2, 4, 1, 5, 13, 7, 1, 13, 40, 33, 10, 1, 34, 120, 132, 62, 13, 1, 89, 354, 483, 308, 100, 16, 1, 233, 1031, 1671, 1345, 595, 147, 19, 1, 610, 2972, 5561, 5398, 3030, 1020, 203, 22, 1, 1597, 8495, 17984, 20410, 13893, 5943, 1610, 268, 25, 1, 4181
Offset: 0

Views

Author

Philippe Deléham, Mar 03 2014

Keywords

Comments

Unsigned version of A124037 and A126126.
Subtriangle of the triangle given by (0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, ...) DELTA (1, 0, 2, -2, 0, 0, 0, 0, 0, 0, 0, ...) where DELTA is the operator defined in A084938.
Row sums are A001075(n).
Diagonal sums are A133494(n).
Sum_{k=0..n} T(n,k)*x^k = A001519(n), A001075(n), A002320(n), A038723(n), A033889(n) for x = 0, 1, 2, 3, 4 respectively. - Philippe Deléham, Mar 05 2014

Examples

			Triangle begins:
1;
1, 1;
2, 4, 1;
5, 13, 7, 1;
13, 40, 33, 10, 1;
34, 120, 132, 62, 13, 1;
89, 354, 483, 308, 100, 16, 1;
233, 1031, 1671, 1345, 595, 147, 19, 1;...
Triangle (0, 1, 1, 1, 0, 0, 0, ...) DELTA (1, 0, 2, -2, 0, 0, ...) begins:
1;
0, 1;
0, 1, 1;
0, 2, 4, 1;
0, 5, 13, 7, 1;
0, 13, 40, 33, 10, 1;
0, 34, 120, 132, 62, 13, 1;
0, 89, 354, 483, 308, 100, 16, 1;
0, 233, 1031, 1671, 1345, 595, 147, 19, 1;...
		

Crossrefs

Programs

  • Mathematica
    (* The function RiordanArray is defined in A256893. *)
    RiordanArray[(1-2#)/(1-3#+#^2)&, x/(1-3#+#^2)&, 10] // Flatten (* Jean-François Alcover, Jul 16 2019 *)

Formula

T(n,k) = 3*T(n-1,k) + T(n-1,k-1) - T(n-2,k), T(0,0) = T(1,0) = T(1,1) = 1, T(n,k) = 0 if k<0 or if k>n.
G.f.: (1-2*x)/(1-(y+3)*x+x^2). - Philippe Deléham, Mar 05 2014

A134504 a(n) = Fibonacci(7n + 6).

Original entry on oeis.org

8, 233, 6765, 196418, 5702887, 165580141, 4807526976, 139583862445, 4052739537881, 117669030460994, 3416454622906707, 99194853094755497, 2880067194370816120, 83621143489848422977, 2427893228399975082453
Offset: 0

Views

Author

Artur Jasinski, Oct 28 2007

Keywords

Crossrefs

Programs

Formula

G.f.: (-8-x) / (-1 + 29*x + x^2). - R. J. Mathar, Jul 04 2011
a(n) = A000045(A017053(n)). - Michel Marcus, Nov 08 2013
a(n) = 29*a(n-1) + a(n-2). - Wesley Ivan Hurt, Mar 15 2023

Extensions

Offset changed from 1 to 0 by Vincenzo Librandi, Apr 17 2011

A056914 a(n) = Lucas(4*n+1).

Original entry on oeis.org

1, 11, 76, 521, 3571, 24476, 167761, 1149851, 7881196, 54018521, 370248451, 2537720636, 17393796001, 119218851371, 817138163596, 5600748293801, 38388099893011, 263115950957276, 1803423556807921, 12360848946698171
Offset: 0

Views

Author

Barry E. Williams, Jul 11 2000

Keywords

Comments

a(n) = (t(i+4n+1) - t(i))/(t(i+2n+1) - t(i+2n)), where (t) is any sequence of the form t(n+2) = 4t(n+1) - 4t(n) + t(n-1) or of the form t(n+1) = 3t(n) - t(n-1) without regard to initial values as long as t(i+2n+1) - t(i+2n) != 0. - Klaus Purath, Jun 24 2024

References

  • V. E. Hoggatt, Jr., Fibonacci and Lucas Numbers, A Publication of the Fibonacci Association, Houghton Mifflin Co., 1969, pp. 27-29.

Crossrefs

Cf. (A056914) = sqrt{5*(A033889)^2 - 4}.
Cf. quadrisection of A000032: A056854 (first), this sequence (second), A246453 (third, without 11), A288913 (fourth).

Programs

  • GAP
    List([0..30], n-> Lucas(1,-1,4*n+1)[2] ); # G. C. Greubel, Jan 16 2020
  • Magma
    [Lucas(4*n+1): n in [0..30]]; // G. C. Greubel, Dec 24 2017
    
  • Maple
    with(combinat); seq(fibonacci(4*n+2)+fibonacci(4*n), n = 0..30); # G. C. Greubel, Jan 16 2020
  • Mathematica
    LucasL[4*Range[0,30]+1] (* or *) LinearRecurrence[{7,-1}, {1,11}, 30] (* G. C. Greubel, Dec 24 2017 *)
  • PARI
    my(x='x+O('x^30)); Vec((1+4*x)/(1-7*x+x^2)) \\ G. C. Greubel, Dec 24 2017
    
  • Sage
    [lucas_number2(4*n+1,1,-1) for n in (0..30)] # G. C. Greubel, Jan 16 2020
    

Formula

a(n) = 7*a(n-1) - a(n-2), with a(0)=1, a(1)=11.
a(n) = (11*(((7+3*sqrt(5))/2)^n - ((7-3*sqrt(5))/2)^n) - (((7+3*sqrt(5))/2)^(n-1) - ((7-3*sqrt(5))/2)^(n-1)))/3*sqrt(5).
G.f.: (1+4*x)/(1-7*x+x^2). - Philippe Deléham, Nov 02 2008

A167816 Numerator of x(n) = x(n-1) + x(n-2), x(0)=0, x(1)=1/3; denominator=A167817.

Original entry on oeis.org

0, 1, 1, 2, 1, 5, 8, 13, 7, 34, 55, 89, 48, 233, 377, 610, 329, 1597, 2584, 4181, 2255, 10946, 17711, 28657, 15456, 75025, 121393, 196418, 105937, 514229, 832040, 1346269, 726103, 3524578, 5702887, 9227465, 4976784, 24157817, 39088169, 63245986, 34111385
Offset: 0

Views

Author

Reinhard Zumkeller, Nov 13 2009

Keywords

Crossrefs

Programs

  • Magma
    [0,1,1] cat [Numerator(Fibonacci(n)/Fibonacci(2*n-4)): n in [3..40]]; // Vincenzo Librandi, Jun 28 2016
  • Mathematica
    Numerator[LinearRecurrence[{1,1},{0,1/3},40]] (* Harvey P. Dale, Dec 07 2014 *)
    LinearRecurrence[{0, 0, 0, 7, 0, 0, 0, -1},{0, 1, 1, 2, 1, 5, 8, 13},39] (* Ray Chandler, Aug 03 2015 *)

Formula

a(n) = (a(n-1)*A093148(n+2) + a(n-2)*A093148(n+1))/A093148(n-1) for n>1.
a(4*n) = A004187(n) = (a(4*n-1) + a(4*n-2))/3;
a(4*n+1) = A033889(n) = 3*a(4*n-1) + a(4*n-2);
a(4*n+2) = A033890(n) = a(4*n-1) + 3*a(4*n-2);
a(4*n+3) = A033891(n) = a(4*n-1) + a(4*n-2).
Numerator of Fibonacci(n) / Fibonacci(2n-4) for n>=3. - Gary Detlefs, Dec 20 2010

Extensions

Definition corrected by D. S. McNeil, May 09 2010

A134501 a(n) = Fibonacci(7n + 3).

Original entry on oeis.org

2, 55, 1597, 46368, 1346269, 39088169, 1134903170, 32951280099, 956722026041, 27777890035288, 806515533049393, 23416728348467685, 679891637638612258, 19740274219868223167, 573147844013817084101, 16641027750620563662096
Offset: 0

Views

Author

Artur Jasinski, Oct 28 2007

Keywords

Crossrefs

Programs

Formula

From R. J. Mathar, Jul 04 2011: (Start)
G.f.: (-2+3*x) / (-1 + 29*x + x^2).
a(n) = 2*A049667(n+1) - 3*A049667(n). (End)
a(n) = A000045(A017017(n)). - Michel Marcus, Nov 07 2013

Extensions

Offset changed to 0 by Vincenzo Librandi, Apr 16 2011

A134502 a(n) = Fibonacci(7n + 4).

Original entry on oeis.org

3, 89, 2584, 75025, 2178309, 63245986, 1836311903, 53316291173, 1548008755920, 44945570212853, 1304969544928657, 37889062373143906, 1100087778366101931, 31940434634990099905, 927372692193078999176, 26925748508234281076009
Offset: 0

Views

Author

Artur Jasinski, Oct 28 2007

Keywords

Crossrefs

Programs

Formula

From R. J. Mathar, Jul 04 2011: (Start)
G.f.: (-3-2*x) / (-1 + 29*x + x^2).
a(n) = 2*A049667(n) + 3*A049667(n+1). (End)
a(n) = A000045(A017029(n)). - Michel Marcus, Nov 07 2013

Extensions

Offset changed from 1 to 0 by Vincenzo Librandi, Apr 17 2011

A122070 Triangle given by T(n,k) = Fibonacci(n+k+1)*binomial(n,k) for 0<=k<=n.

Original entry on oeis.org

1, 1, 2, 2, 6, 5, 3, 15, 24, 13, 5, 32, 78, 84, 34, 8, 65, 210, 340, 275, 89, 13, 126, 510, 1100, 1335, 864, 233, 21, 238, 1155, 3115, 5040, 4893, 2639, 610, 34, 440, 2492, 8064, 16310, 21112, 17080, 7896, 1597, 55, 801, 5184, 19572, 47502, 76860, 82908, 57492, 23256, 4181
Offset: 0

Views

Author

Philippe Deléham, Oct 15 2006, Mar 13 2012

Keywords

Comments

Subtriangle of (0, 1, 1, -1, 0, 0, 0, 0, 0, 0, 0, ...) DELTA (1, 1, 1, 0, 0, 0, 0, 0, 0, 0, ...) where DELTA is the operator defined in A084938.
Mirror image of the triangle in A185384.

Examples

			Triangle begins:
   1;
   1,   2;
   2,   6,   5;
   3,  15,  24,   13;
   5,  32,  78,   84,   34;
   8,  65, 210,  340,  275,  89;
  13, 126, 510, 1100, 1335, 864, 233;
(0, 1, 1, -1, 0, 0, ...) DELTA (1, 1, 1, 0, 0, ...) begins :
  1;
  0,  1;
  0,  1,   2;
  0,  2,   6,   5;
  0,  3,  15,  24,   13;
  0,  5,  32,  78,   84,   34;
  0,  8,  65, 210,  340,  275,  89;
  0, 13, 126, 510, 1100, 1335, 864, 233;
		

Crossrefs

Programs

  • GAP
    Flat(List([0..10], n-> List([0..n], k-> Binomial(n,k)*Fibonacci(n+ k+1) ))); # G. C. Greubel, Oct 02 2019
  • Magma
    [Binomial(n,k)*Fibonacci(n+k+1): k in [0..n], n in [0..10]]; // G. C. Greubel, Oct 02 2019
    
  • Maple
    with(combinat): seq(seq(binomial(n,k)*fibonacci(n+k+1), k=0..n), n=0..10); # G. C. Greubel, Oct 02 2019
  • Mathematica
    Table[Fibonacci[n+k+1]*Binomial[n,k], {n,0,10}, {k,0,n}]//Flatten (* G. C. Greubel, Oct 02 2019 *)
  • PARI
    T(n,k) = binomial(n,k)*fibonacci(n+k+1);
    for(n=0,10, for(k=0,n, print1(T(n,k), ", "))) \\ G. C. Greubel, Oct 02 2019
    
  • Sage
    [[binomial(n,k)*fibonacci(n+k+1) for k in (0..n)] for n in (0..10)] # G. C. Greubel, Oct 02 2019
    

Formula

T(n,k) = A000045(n+k+1)*A007318(n,k) .
T(n,n) = Fibonacci(2*n+1) = A001519(n+1) .
Sum_{k=0..n} T(n,k) = Fibonacci(3*n+1) = A033887(n) .
Sum_{k=0..n}(-1)^k*T(n,k) = (-1)^n = A033999(n) .
Sum_{k=0..floor(n/2)} T(n-k,k) = (Fibonacci(n+1))^2 = A007598(n+1).
Sum_{k=0..n} T(n,k)*2^k = Fibonacci(4*n+1) = A033889(n).
Sum_{k=0..n} T(n,k)^2 = A208588(n).
G.f.: (1-y*x)/(1-(1+3y)*x-(1+y-y^2)*x^2).
T(n,k) = T(n-1,k) + 3*T(n-1,k-1) + T(n-2,k) + T(n-2,k-1) - T(n-2,k-2), T(0,0) = T(1,0) = 1, T(1,1) = 2, T(n,k) = 0 if k<0 or if k>n.
T(n,k) = A185384(n,n-k).
T(2n,n) = binomial(2n,n)*Fibonacci(3*n+1) = A208473(n).

Extensions

Corrected and extended by Philippe Deléham, Mar 13 2012
Term a(50) corrected by G. C. Greubel, Oct 02 2019
Showing 1-10 of 15 results. Next