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.

A269551 Expansion of (3*x^2 + 258*x - 5)/(x^3 - 99*x^2 + 99*x - 1).

Original entry on oeis.org

5, 237, 22965, 2250077, 220484325, 21605213517, 2117090440085, 207453257914557, 20328302185186245, 1991966160890337197, 195192355465067858805, 19126858869415759825437, 1874236976847279395033765, 183656096872163964953483277, 17996423256495221286046327125, 1763465823039659522067586574717
Offset: 0

Views

Author

Michel Marcus, Feb 29 2016

Keywords

Comments

Mc Laughlin (2010) gives an identity relating ten sequences, denoted a_k, b_k, ..., f_k, p_k, q_k, r_k, s_k. This is the sequence e_k.

Crossrefs

Programs

  • Magma
    m:=20; R:=PowerSeriesRing(Integers(), m); Coefficients(R!((3*x^2+258*x-5)/(x^3-99*x^2+99*x-1))); // Bruno Berselli, Mar 01 2016
  • Mathematica
    CoefficientList[Series[(3 x^2 + 258 x - 5)/(x^3 - 99 x^2 + 99 x - 1), {x, 0, 20}], x] (* or *) Table[FullSimplify[8/3 + (-(3 Sqrt[6] - 7)/(2 Sqrt[6] + 5)^(2 n) + (3 Sqrt[6] + 7) (2 Sqrt[6] + 5)^(2 n))/6], {n, 0, 20}] (* Bruno Berselli, Mar 01 2016 *)
  • PARI
    Vec((3*x^2 + 258*x - 5)/(x^3 - 99*x^2 + 99*x - 1) + O(x^20))
    
  • Sage
    gf = (3*x^2+258*x-5)/(x^3-99*x^2+99*x-1)
    print(taylor(gf, x, 0, 20).list()) # Bruno Berselli, Mar 01 2016
    

Formula

G.f.: (3*x^2 + 258*x - 5)/(x^3 - 99*x^2 + 99*x - 1).
a(n) = 8/3 + (-(3*sqrt(6) - 7)/(2*sqrt(6) + 5)^(2*n) + (3*sqrt(6) + 7)*(2*sqrt(6) + 5)^(2*n))/6. - Bruno Berselli, Mar 01 2016