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

A163308 a(n) = 16*a(n-1) - 59*a(n-2) for n > 1; a(0) = 1, a(1) = 9.

Original entry on oeis.org

1, 9, 85, 829, 8249, 83073, 842477, 8578325, 87547057, 894631737, 9148831429, 93598030381, 957787431785, 9802315116081, 100327583381981, 1026904742262917, 10511148456669793, 107590995513204585
Offset: 0

Views

Author

Klaus Brockhaus, Jul 24 2009

Keywords

Comments

Binomial transform of A163307. Inverse binomial transform of A163309.

Crossrefs

Programs

  • Magma
    [ n le 2 select 8*n-7 else 16*Self(n-1)-59*Self(n-2): n in [1..18] ];
    
  • Mathematica
    LinearRecurrence[{16,-59},{1,9},20] (* Harvey P. Dale, Dec 06 2013 *)
  • PARI
    Vec((1-7*x)/(1-16*x+59*x^2) + O(x^50)) \\ G. C. Greubel, Dec 18 2016

Formula

a(n) = ((5+sqrt(5))*(8+sqrt(5))^n + (5-sqrt(5))*(8-sqrt(5))^n)/10.
G.f.: (1-7*x)/(1-16*x+59*x^2).
E.g.f.: (1/5)*exp(8*x)*(5*cosh(sqrt(5)*x) + sqrt(5)*sinh(sqrt(5)*x)). - G. C. Greubel, Dec 18 2016

A163310 a(n) = 20*a(n-1) - 95*a(n-2) for n > 1; a(0) = 1, a(1) = 11.

Original entry on oeis.org

1, 11, 125, 1455, 17225, 206275, 2489125, 30186375, 367260625, 4477506875, 54660378125, 667844409375, 8164152265625, 99837826421875, 1221162063203125, 14938647753984375, 182762559075390625, 2236079644879296875
Offset: 0

Views

Author

Klaus Brockhaus, Jul 24 2009

Keywords

Comments

Binomial transform of A163309. Tenth binomial transform of A074872.

Crossrefs

Programs

  • Magma
    [ n le 2 select 10*n-9 else 20*Self(n-1)-95*Self(n-2): n in [1..18] ];
    
  • Mathematica
    LinearRecurrence[{20,-95}, {1,11}, 50] (* G. C. Greubel, Dec 18 2016 *)
  • PARI
    Vec((1-9*x)/(1-20*x+95*x^2) + O(x^50)) \\ G. C. Greubel, Dec 18 2016

Formula

a(n) = ((5+sqrt(5))*(10+sqrt(5))^n + (5-sqrt(5))*(10-sqrt(5))^n)/10.
G.f.: (1-9*x)/(1-20*x+95*x^2).
E.g.f.: (1/5)*exp(10*x)*(5*cosh(sqrt(5)*x) + sqrt(5)*sinh(sqrt(5)*x)). - G. C. Greubel, Dec 18 2016
Showing 1-2 of 2 results.