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-8 of 8 results.

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

A094441 Triangular array T(n,k) = Fibonacci(n+1-k)*C(n,k), 0 <= k <= n.

Original entry on oeis.org

1, 1, 1, 2, 2, 1, 3, 6, 3, 1, 5, 12, 12, 4, 1, 8, 25, 30, 20, 5, 1, 13, 48, 75, 60, 30, 6, 1, 21, 91, 168, 175, 105, 42, 7, 1, 34, 168, 364, 448, 350, 168, 56, 8, 1, 55, 306, 756, 1092, 1008, 630, 252, 72, 9, 1, 89, 550, 1530, 2520, 2730, 2016, 1050, 360, 90, 10, 1
Offset: 0

Views

Author

Clark Kimberling, May 03 2004

Keywords

Comments

Triangle of coefficients of polynomials u(n,x) jointly generated with A209415; see the Formula section.
Column 1: Fibonacci numbers: F(n)=A000045(n)
Column 2: n*F(n)
Row sums: odd-indexed Fibonacci numbers
Alternating row sums: signed Fibonacci numbers
Coefficient of x^n in u(n,x): 1
Coefficient of x^(n-1) in u(n,x): n
Coefficient of x^(n-2) in u(n,x): n(n+1)
For a discussion and guide to related arrays, see A208510.
Subtriangle of the triangle given by (0, 1, 1, -1, 0, 0, 0, 0, 0, 0, 0, ...) DELTA (1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, ...) where DELTA is the operator defined in A084938. - Philippe Deléham, Mar 27 2012
Row n shows the coefficients of the numerator of the n-th derivative of (1/n!)*(x+1)/(1-x-x^2); see the Mathematica program. - Clark Kimberling, Oct 22 2019

Examples

			First five rows:
  1;
  1,  1;
  2,  2,  1;
  3,  6,  3,  1;
  5, 12, 12,  4,  1;
First three polynomials v(n,x): 1, 1 + x, 2 + 2x + x^2.
From _Philippe Deléham_, Mar 27 2012: (Start)
(0, 1, 1, -1, 0, 0, 0, ...) DELTA (1, 0, 0, 1, 0, 0, 0, ...) begins:
  1;
  0,  1;
  0,  1,  1;
  0,  2,  2,  1;
  0,  3,  6,  3,  1;
  0,  5, 12, 12,  4,  1. (End)
		

Crossrefs

Programs

  • GAP
    Flat(List([0..12], n-> List([0..n], k-> Binomial(n,k)*Fibonacci(n-k+1) ))); # G. C. Greubel, Oct 30 2019
  • Magma
    [Binomial(n,k)*Fibonacci(n-k+1): k in [0..n], n in [0..12]]; // G. C. Greubel, Oct 30 2019
    
  • Maple
    with(combinat); seq(seq(fibonacci(n-k+1)*binomial(n,k), k=0..n), n=0..12); # G. C. Greubel, Oct 30 2019
  • Mathematica
    (* First program *)
    u[1, x_] := 1; v[1, x_] := 1; z = 16;
    u[n_, x_] := x*u[n - 1, x] + v[n - 1, x];
    v[n_, x_] := u[n - 1, x] + (x + 1)*v[n - 1, x];
    Table[Expand[u[n, x]], {n, 1, z/2}]
    Table[Expand[v[n, x]], {n, 1, z/2}]
    cu = Table[CoefficientList[u[n, x], x], {n, 1, z}];
    TableForm[cu]
    Flatten[%]    (* A094441 *)
    Table[Expand[v[n, x]], {n, 1, z}]
    cv = Table[CoefficientList[v[n, x], x], {n, 1, z}];
    TableForm[cv]
    Flatten[%]    (* A094442 *)
    (* Next program outputs polynomials having coefficients T(n,k) *)
    g[x_, n_] := Numerator[(-1)^(n + 1) Factor[D[(x + 1)/(1 - x - x^2), {x, n}]]]
    Column[Expand[Table[g[x, n]/n!, {n, 0, 12}]]] (* Clark Kimberling, Oct 22 2019 *)
    (* Second program *)
    Table[Fibonacci[n-k+1]*Binomial[n,k], {n,0,12}, {k,0,n}]//Flatten (* G. C. Greubel, Oct 30 2019 *)
  • PARI
    T(n,k) = binomial(n,k)*fibonacci(n-k+1);
    for(n=0,12, for(k=0,n, print1(T(n,k), ", "))) \\ G. C. Greubel, Oct 30 2019
    
  • Sage
    [[binomial(n,k)*fibonacci(n-k+1) for k in (0..n)] for n in (0..12)] # G. C. Greubel, Oct 30 2019
    

Formula

Sum_{k=0..n} T(n,k)*x^k = A039834(n-1), A000045(n+1), A001519(n+1), A081567(n), A081568(n), A081569(n), A081570(n), A081571(n) for x = -1, 0, 1, 2, 3, 4, 5, 6 respectively. - Philippe Deléham, Dec 14 2009
From Clark Kimberling, Mar 09 2012: (Start)
A094441 shows the coefficient of the polynomials u(n,x) which are jointly generated with polynomials v(n,x) by these rules:
u(n,x) = x*u(n-1,x) + v(n-1,x),
v(n,x) = u(n-1,x) + (x+1)*v(n-1,x),
where u(1,x)=1, v(1,x)=1.
(End)
T(n,k) = T(n-1,k) + 2*T(n-1,k-1) + T(n-2,k) - T(n-2,k-1) - T(n-2,k-2), T(1,0) = T(2,0) = T(2,1) = 1 and T(n,k) = 0 if k<0 or if k>n. - Philippe Deléham, Mar 27 2012
G.f. (1-x*y)/(1 - 2*x*y - x - x^2 + x^2*y + x^2*y^2). - R. J. Mathar, Aug 11 2015
From G. C. Greubel, Oct 30 2019: (Start)
T(n,k) = binomial(n,k)*Fibonacci(n-k+1).
Sum_{k=0..n} T(n,k) = Fibonacci(2*n+1).
Sum_{k=0..n} (-1)^k * T(n,k) = (-1)^n * Fibonacci(n-1). (End)

A081568 Third binomial transform of Fibonacci(n+1).

Original entry on oeis.org

1, 4, 17, 75, 338, 1541, 7069, 32532, 149965, 691903, 3193706, 14745009, 68084297, 314394980, 1451837593, 6704518371, 30961415074, 142980203437, 660285858245, 3049218769908, 14081386948661, 65028302171639, 300302858766202, 1386808687475385, 6404329365899473
Offset: 0

Views

Author

Paul Barry, Mar 22 2003

Keywords

Comments

Binomial transform of A081567.
Case k=3 of family of recurrences a(n) = (2k+1)*a(n-1) - A028387(k-1)*a(n-2) for n >= 2, with a(0) = 1 and a(1) = k + 1.
a(n) = 4^n*a(n;1/4) = Sum_{k=0..n} binomial(n,k) * (-1)^k * F(k-1) * 4^(n-k), which also implies Deléham's formula given below and where a(n;d), n = 0, 1, ..., d, denote the delta-Fibonacci numbers defined in comments to A000045 (see also Witula's et al. papers). - Roman Witula, Jul 12 2012

Crossrefs

Cf. A000045, A161731 (INVERT transform), A007582 (INVERTi transform), A028387, A081567, A081569 (binomial transform), A094441, A099453.

Programs

  • GAP
    a:=[1,4];; for n in [3..30] do a[n]:=7*a[n-1]-11*a[n-2]; od; a; # G. C. Greubel, Aug 12 2019
  • Magma
    I:=[1, 4]; [n le 2 select I[n] else 7*Self(n-1)-11*Self(n-2): n in [1..30]]; // Vincenzo Librandi, Aug 09 2013
    
  • Maple
    seq(coeff(series((1-3*x)/(1-7*x+11*x^2), x, n+1), x, n), n = 0 .. 30); # G. C. Greubel, Aug 12 2019
  • Mathematica
    CoefficientList[Series[(1-3x)/(1 -7x +11x^2), {x, 0, 30}], x] (* Vincenzo Librandi, Aug 09 2013 *)
    LinearRecurrence[{7,-11},{1,4},30] (* Harvey P. Dale, Feb 01 2015 *)
  • PARI
    Vec((1-3*x)/(1-7*x+11*x^2) + O(x^30)) \\ Altug Alkan, Dec 10 2015
    
  • Sage
    def A081568_list(prec):
        P. = PowerSeriesRing(ZZ, prec)
        return P((1-3*x)/(1-7*x+11*x^2)).list()
    A081568_list(30) # G. C. Greubel, Aug 12 2019
    

Formula

a(n) = 7*a(n-1) - 11*a(n-2) for n >= 2, with a(0) = 1 and a(1) = 4.
a(n) = (1/2 - sqrt(5)/10)*(7/2 - sqrt(5)/2)^n + (sqrt(5)/10 + 1/2)*(sqrt(5)/2 + 7/2)^n = A099453(n) - 3*A099453(n-1).
G.f.: (1 - 3*x)/(1 - 7*x + 11*x^2).
a(n) = Sum_{k=0..n} A094441(n,k)*3^k. - Philippe Deléham, Dec 14 2009
G.f.: Q(0,u)/x - 1/x, where u = x/(1 - 3*x), Q(k,u) = 1 + u^2 + (k+2)*u - u*(k + 1 + u)/Q(k+1); (continued fraction). - Sergei N. Gladkovskii, Oct 07 2013
E.g.f.: exp(7*x/2)*(5*cosh(sqrt(5)*x/2) + sqrt(5)*sinh(sqrt(5)*x/2))/5. - Stefano Spezia, Jun 03 2024

A081574 Fourth binomial transform of Fibonacci numbers F(n).

Original entry on oeis.org

0, 1, 9, 62, 387, 2305, 13392, 76733, 436149, 2467414, 13919895, 78398189, 441105696, 2480385673, 13942462833, 78354837710, 440286745563, 2473838793577, 13899100976496, 78088971710501, 438717826841085
Offset: 0

Views

Author

Paul Barry, Mar 22 2003

Keywords

Comments

Binomial transform of A099453(n-1):= [0,1,7,38,189,905,...].
Case k=4 of family of recurrences a(n) = (2k+1)*a(n-1) - A028387(k-1)*a(n-2), a(0)=0, a(1)=1.

Crossrefs

Programs

  • GAP
    a:=[0,1];; for n in [3..30] do a[n]:=9*a[n-1]-19*a[n-2]; od; a; # G. C. Greubel, Aug 13 2019
  • Magma
    [n le 2 select (n-1) else 9*Self(n-1)-19*Self(n-2): n in [1..25]]; // Vincenzo Librandi, Aug 09 2013
    
  • Maple
    seq(coeff(series(x/(1-9*x+19*x^2), x, n+1), x, n), n = 0..30); # G. C. Greubel, Aug 13 2019
  • Mathematica
    Join[{a=0,b=1},Table[c=9*b-19*a;a=b;b=c,{n,60}]] (* Vladimir Joseph Stephan Orlovsky, Jan 27 2011 *)
    LinearRecurrence[{9,-19},{0,1},30] (* Harvey P. Dale, Dec 03 2011 *)
    CoefficientList[Series[x/(1 -9x +19x^2), {x, 0,  30}], x] (* Vincenzo Librandi, Aug 09 2013 *)
  • PARI
    my(x='x+O('x^30)); Vec(x/(1 - 9*x + 19*x^2)) \\ G. C. Greubel, Aug 13 2019
    
  • Sage
    [lucas_number1(n,9,19) for n in range(0, 21)] # Zerinvary Lajos, Apr 23 2009
    

Formula

a(n) = 9*a(n-1) - 19*a(n-1), a(0)=0, a(1)=1.
a(n) = ((sqrt(5)/2 + 9/2)^n - (9/2 - sqrt(5)/2)^n)/sqrt(5).
G.f.: x/(1 - 9*x + 19*x^2).
E.g.f.: 2*exp(9*x/2)*sinh(sqrt(5)*x/2)/sqrt(5). - Ilya Gutkovskiy, Aug 11 2017

Extensions

Corrected by Philippe Deléham, Dec 16 2009

A081570 Fifth binomial transform of F(n+1).

Original entry on oeis.org

1, 6, 37, 233, 1490, 9633, 62753, 410926, 2700349, 17786985, 117346714, 774991289, 5121849473, 33865596822, 223987930325, 1481764925737, 9803764203682, 64870223394129, 429263295428641, 2840659771285310, 18798621916707821
Offset: 0

Views

Author

Paul Barry, Mar 22 2003

Keywords

Comments

Binomial transform of A081569.
Case k=5 of family of recurrences a(n) = (2k+1)*a(n-1) - A028387(k-1)*a(n-2), a(0)=1, a(1)=k+1.

Crossrefs

Cf. A000045.

Programs

  • GAP
    a:=[1,6];; for n in [3..30] do a[n]:=11*a[n-1]-29*a[n-2]; od; a; # G. C. Greubel, Aug 12 2019
  • Magma
    I:=[1, 6]; [n le 2 select I[n] else 11*Self(n-1)-29*Self(n-2): n in [1..30]]; // Vincenzo Librandi, Aug 09 2013
    
  • Maple
    seq(coeff(series((1-5*x)/(1-11*x+29*x^2), x, n+1), x, n), n = 0 .. 30); # G. C. Greubel, Aug 12 2019
  • Mathematica
    CoefficientList[Series[(1-5x)/(1 -11x +29x^2), {x, 0, 30}], x] (* Vincenzo Librandi, Aug 09 2013 *)
    LinearRecurrence[{11,-29},{1,6},30] (* Harvey P. Dale, Aug 04 2022 *)
  • PARI
    my(x='x+O('x^30)); Vec((1-5*x)/(1-11*x+29*x^2)) \\ G. C. Greubel, Aug 12 2019
    
  • Sage
    def A081570_list(prec):
        P. = PowerSeriesRing(ZZ, prec)
        return P((1-5*x)/(1-11*x+29*x^2)).list()
    A081570_list(30) # G. C. Greubel, Aug 12 2019
    

Formula

a(n) = 11*a(n-1) - 29*a(n-2), a(0)=1, a(1)=6.
a(n) = (1/2 - sqrt(5)/10)*(11/2 - sqrt(5)/2)^n + (sqrt(5)/10 + 1/2)*(sqrt(5)/2 + 11/2)^n .
G.f.: (1-5*x)/(1-11*x+29*x^2).
a(n) = Sum_{k=0..n} A094441(n,k)*5^k. - Philippe Deléham, Dec 14 2009

A270863 Self-composition of the Fibonacci sequence.

Original entry on oeis.org

0, 1, 2, 6, 17, 50, 147, 434, 1282, 3789, 11200, 33109, 97878, 289354, 855413, 2528850, 7476023, 22101326, 65338038, 193158521, 571033600, 1688143881, 4990651642, 14753839486, 43616704857, 128943855250, 381196100507, 1126928202714, 3331532438042, 9848993360069
Offset: 0

Views

Author

Oboifeng Dira, Mar 24 2016

Keywords

Comments

This sequence has the same relation to the Fibonacci numbers A000045 as A030267 has to the natural numbers A000027.
From Oboifeng Dira, Jun 28 2020: (Start)
This sequence can be generated from a family of composition pairs of generating functions g(f(x)), where k is an integer and where
f(x) = x/(1-k*x-x^2) and g(x) = (x+(k-1)*x^2)/(1-(3-2*k)*x-(3*k-k^2-1)*x^2).
Some cases of k values are:
k=-5, f(x) g.f. 0,A052918(-1)^n and g(x) g.f. 0,A081571
k=-4, f(x) g.f. A001076(-1)^(n+1) and g(x) g.f. 0,A081570
k=-3, f(x) g.f. A006190(-1)^(n+1) and g(x) g.f. 0,A081569
k=-2, f(x) g.f. A215936(n+2) and g(x) g.f. 0,A081568
k=-1, f(x) g.f. A039834(n+2) and g(x) g.f. 0,A081567
k=0, f(x) g.f. A000035 and g(x) g.f. 0,A001519(n+1)
k=1, f(x) g.f. A000045 and g(x) g.f. A000045
k=2, f(x) g.f. A000129 and g(x) g.f. 0,A039834(n+1)
k=3, f(x) g.f. A006190 and g(x) g.f. 0,A001519(-1)^n
k=4, f(x) g.f. A001076 and g(x) g.f. 0,A093129(-1)^n
k=5, f(x) g.f. 0,A052918 and g(x) g.f. 0,A192240(-1)^n
k=6, f(x) g.f. A005668 and g(x)=(x+5*x^2)/(1+9*x+19*x^2)
k=7, f(x) g.f. 0,A054413 and g(x)=(x+6*x^2)/(1+11*x+29*x^2).
(End)

Examples

			a(5) = 3*a(4)+a(3)-3*a(2)-a(1) = 51+6-6-1 = 50.
		

Crossrefs

Programs

  • Magma
    I:=[0, 1, 2, 6]; [m le 4 select I[m] else 3*Self(m-1)+Self(m-2)-3*Self(m-3)-Self(m-4): m in [1..30]]; // Marius A. Burtea, Aug 03 2019
  • Maple
    f:= x-> x/(1-x-x^2):
    a:= n-> coeff(series(f(f(x)), x, n+1), x, n):
    seq(a(n), n=0..30);
  • PARI
    a(n)=([0,1,0,0; 0,0,1,0; 0,0,0,1; -1,-3,1,3]^(n-1)*[1;2;6;17])[1,1] \\ Charles R Greathouse IV, Mar 24 2016
    
  • PARI
    concat(0, Vec(x*(1-x-x^2)/(1-3*x-x^2+3*x^3+x^4) + O(x^40))) \\ Colin Barker, Mar 24 2016
    

Formula

a(n) = 3*a(n-1)+a(n-2)-3*a(n-3)-a(n-4) for n > 3, a(0)=0, a(1)=1, a(2)=2, a(3)=6.
G.f.: x*(1-x-x^2) / (1-3*x-x^2+3*x^3+x^4). - Colin Barker, Mar 24 2016
G.f.: B(B(x)) where B(x) is the g.f. of A000045. - Joerg Arndt, Mar 25 2016
a(n) = (phi*((phi^2 + 5^(1/4)*sqrt(3*phi))^n - (phi^2 - 5^(1/4)*sqrt(3*phi))^n) + (psi^2 + 5^(1/4)*sqrt(3*psi))^n - (psi^2 - 5^(1/4)*sqrt(3*psi))^n)/(2^n * 5^(3/4) * sqrt(3*phi)), where phi = (sqrt(5) + 1)/2 is the golden ratio, and psi = 1/phi = (sqrt(5) - 1)/2. - Vladimir Reshetnikov, Aug 01 2019
0 = a(n)*(a(n) +6*a(n+1) -a(n+2)) +a(n+1)*(8*a(n+1) -9*a(n+2) +a(n+3)) +a(n+2)*(-8*a(n+2) +6*a(n+3)) +a(n+3)*(-a(n+3)) if n>=0. - Michael Somos, Feb 05 2022

A081572 Square array of binomial transforms of Fibonacci numbers, read by ascending antidiagonals.

Original entry on oeis.org

1, 1, 1, 1, 2, 2, 1, 3, 5, 3, 1, 4, 10, 13, 5, 1, 5, 17, 35, 34, 8, 1, 6, 26, 75, 125, 89, 13, 1, 7, 37, 139, 338, 450, 233, 21, 1, 8, 50, 233, 757, 1541, 1625, 610, 34, 1, 9, 65, 363, 1490, 4172, 7069, 5875, 1597, 55, 1, 10, 82, 535, 2669, 9633, 23165, 32532, 21250, 4181, 89
Offset: 0

Views

Author

Paul Barry, Mar 22 2003

Keywords

Comments

Array rows are solutions of the recurrence a(n) = (2*k+1)*a(n-1) - A028387(k-1)*a(n-2), where a(0) = 1 and a(1) = k+1.

Examples

			The array rows begins as:
  1, 1,  2,   3,    5,     8,     13, ... A000045;
  1, 2,  5,  13,   34,    89,    233, ... A001519;
  1, 3, 10,  35,  125,   450,   1625, ... A081567;
  1, 4, 17,  75,  338,  1541,   7069, ... A081568;
  1, 5, 26, 139,  757,  4172,  23165, ... A081569;
  1, 6, 37, 233, 1490,  9633,  62753, ... A081570;
  1, 7, 50, 363, 2669, 19814, 148153, ... A081571;
Antidiagonal triangle begins as:
  1;
  1, 1;
  1, 2,  2;
  1, 3,  5,   3;
  1, 4, 10,  13,   5;
  1, 5, 17,  35,  34,    8;
  1, 6, 26,  75, 125,   89,   13;
  1, 7, 37, 139, 338,  450,  233,  21;
  1, 8, 50, 233, 757, 1541, 1625, 610, 34;
		

Crossrefs

Array row n: A000045 (n=0), A001519 (n=1), A081567 (n=2), A081568 (n=3), A081569 (n=4), A081570 (n=5), A081571 (n=6).
Array column k: A000027 (k=1), A002522 (k=2).
Different from A073133.
Cf. A028387.

Programs

  • Magma
    A081572:= func< n,k | (&+[Binomial(k,j)*Fibonacci(j+1)*(n-k)^(k-j): j in [0..k]]) >;
    [A081572(n,k): k in [0..n], n in [0..12]]; // G. C. Greubel, May 27 2021
    
  • Mathematica
    T[n_, k_]:= If[n==0, Fibonacci[k+1], Sum[Binomial[k, j]*Fibonacci[j+1]*n^(k-j), {j, 0, k}]]; Table[T[n-k, k], {n,0,12}, {k,0,n}]//Flatten (* G. C. Greubel, May 26 2021 *)
  • Sage
    def A081572(n,k): return sum( binomial(k,j)*fibonacci(j+1)*(n-k)^(k-j) for j in (0..k) )
    flatten([[A081572(n,k) for k in (0..n)] for n in (0..12)]) # G. C. Greubel, May 27 2021

Formula

Rows are successive binomial transforms of F(n+1).
T(n, k) = ((5+sqrt(5))/10)*( (2*n + 1 + sqrt(5))/2)^k + ((5-sqrt(5)/10)*( 2*n + 1 - sqrt(5))/2 )^k.
From G. C. Greubel, May 27 2021: (Start)
T(n, k) = Sum_{j=0..k} binomial(k,j)*n^(k-j)*Fibonacci(j+1) (square array).
T(n, k) = Sum_{j=0..k} binomial(k,j)*(n-k)^(k-j)*Fibonacci(j+1) (antidiagonal triangle). (End)

A106198 Triangle, columns = successive binomial transforms of Fibonacci numbers.

Original entry on oeis.org

1, 1, 1, 2, 2, 1, 3, 5, 3, 1, 5, 13, 10, 4, 1, 8, 34, 35, 17, 5, 1, 13, 89, 125, 75, 26, 6, 1, 21, 233, 450, 338, 139, 37, 7, 1, 34, 610, 1625, 1541, 757, 233, 50, 8, 1
Offset: 0

Views

Author

Gary W. Adamson, Apr 24 2005

Keywords

Comments

Column 0 = Fibonacci numbers, column 1 = odd-indexed Fibonacci numbers (first binomial transform of 1, 1, 2, 3, 5, ...); column 2 = second binomial transform of Fibonacci numbers, etc.

Examples

			First few rows of the triangle are:
   1;
   1,   1;
   2,   2,   1;
   3,   5,   3,   1;
   5,  13,  10,   4,   1;
   8,  34,  35,  17,   5,   1;
  13,  89, 125,  75,  26,   6,   1;
  21, 233, 450, 338, 139,  37,   7,   1;
  ...
Column 2 = A081567, second binomial transform of Fibonacci numbers: 1, 3, 10, 35, 125, ...
		

Crossrefs

Programs

  • GAP
    T:= function(n,k)
        if k=0 then return Fibonacci(n+1);
        else return Sum([0..n-k], j-> Binomial(n-k,j)*Fibonacci(j+1)*k^(n-k-j));
        fi; end;
    Flat(List([0..10], n-> List([0..n], k-> T(n,k) ))); # G. C. Greubel, Dec 11 2019
  • Magma
    function T(n,k)
      if k eq 0 then return Fibonacci(n+1);
      else return (&+[Binomial(n-k,j)*Fibonacci(j+1)*k^(n-k-j): j in [0..n-k]]);
      end if; return T; end function;
    [T(n,k): k in [0..n], n in [0..10]]; // G. C. Greubel, Dec 11 2019
    
  • Maple
    with(combinat);
    T:= proc(n, k) option remember;
          if k=0 then fibonacci(n+1)
        else add( binomial(n-k,j)*fibonacci(j+1)*k^(n-k-j), j=0..n-k)
          fi; end:
    seq(seq(T(n, k), k=0..n), n=0..10); # G. C. Greubel, Dec 11 2019
  • Mathematica
    Table[If[k==0, Fibonacci[n+1], Sum[Binomial[n-k, j]*Fibonacci[j+1]*k^(n-k-j), {j,0,n-k}]], {n,0,10}, {k,0,n}]//Flatten (* G. C. Greubel, Dec 11 2019 *)
  • PARI
    T(n,k) = if(k==0, fibonacci(n+1), sum(j=0,n-k, binomial(n-k,j)*fibonacci( j+1)*k^(n-k-j)) ); \\ G. C. Greubel, Dec 11 2019
    
  • Sage
    @CachedFunction
    def T(n, k):
        if (k==0): return fibonacci(n+1)
        else: return sum(binomial(n-k,j)*fibonacci(j+1)*k^(n-k-j) for j in (0..n-k))
    [[T(n, k) for k in (0..n)] for n in (0..10)] # G. C. Greubel, Dec 11 2019
    

Formula

Offset column k = k-th binomial transform of the Fibonacci numbers, given leftmost column = Fibonacci numbers.
Showing 1-8 of 8 results.