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.

A163474 a(n) = 16*a(n-1) - 61*a(n-2) for n > 1; a(0) = 3, a(1) = 27.

Original entry on oeis.org

3, 27, 249, 2337, 22203, 212691, 2048673, 19804617, 191904819, 1862395467, 18092133513, 175868012721, 1710268059243, 16636340171907, 161855091136689, 1574864707700697, 15324674763873123, 149128049052227451
Offset: 0

Views

Author

Klaus Brockhaus, Aug 11 2009

Keywords

Comments

Binomial transform of A163473. Inverse binomial transform of A163475.

Crossrefs

Programs

  • Magma
    [ n le 2 select 24*n-21 else 16*Self(n-1)-61*Self(n-2): n in [1..18] ];
    
  • Mathematica
    LinearRecurrence[{16, -61}, {3, 27}, 50] (* G. C. Greubel, Jul 26 2017 *)
  • PARI
    x='x+O('x^50); Vec((3-21*x)/(1-16*x+61*x^2)) \\ G. C. Greubel, Jul 26 2017

Formula

a(n) = ((3+sqrt(3))*(8+sqrt(3))^n + (3-sqrt(3))*(8-sqrt(3))^n)/2.
G.f.: (3-21*x)/(1-16*x+61*x^2).
E.g.f.: exp(8*x)*( 3*cosh(sqrt(3)*x) + sqrt(3)*sinh(sqrt(3)*x) ). - G. C. Greubel, Jul 26 2017

A163476 a(n) = 20*a(n-1) - 97*a(n-2) for n > 1; a(0) = 3, a(1) = 33.

Original entry on oeis.org

3, 33, 369, 4179, 47787, 550377, 6372201, 74057451, 863045523, 10077337713, 117831338529, 1379125012419, 16152860411067, 189282082016697, 2218814180460441, 26015921653589211, 305093457567121443
Offset: 0

Views

Author

Klaus Brockhaus, Aug 11 2009

Keywords

Comments

Binomial transform of A163475. Tenth binomial transform of A056449.

Crossrefs

Programs

  • Magma
    [ n le 2 select 30*n-27 else 20*Self(n-1)-97*Self(n-2): n in [1..17] ];
    
  • Mathematica
    LinearRecurrence[{20, -97}, {3, 33}, 50] (* G. C. Greubel, Jul 26 2017 *)
  • PARI
    x='x+O('x^50); Vec((3-27*x)/(1-20*x+97*x^2)) \\ G. C. Greubel, Jul 26 2017

Formula

a(n) = ((3+sqrt(3))*(10+sqrt(3))^n + (3-sqrt(3))*(10-sqrt(3))^n)/2.
G.f.: (3-27*x)/(1-20*x+97*x^2).
E.g.f.: exp(10*x)*( 3*cosh(sqrt(3)*x) + sqrt(3)*sinh(sqrt(3)*x) ). - G. C. Greubel, Jul 26 2017
Showing 1-2 of 2 results.